markus / ConvertService / ConverterService / DeepViewConverter / MainWindow.xaml @ 30d84e1a
이력 | 보기 | 이력해설 | 다운로드 (7.77 KB)
1 |
<Window x:Class="DeepViewConverter.MainWindow" |
---|---|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
4 |
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
5 |
Title="MainWindow" Height="800" Width="1024"> |
6 |
<Grid Background="White" > |
7 |
<Grid.RowDefinitions>
|
8 |
<RowDefinition Height="160"/> |
9 |
<RowDefinition Height="0.315*"/> |
10 |
<RowDefinition Height="0.615*"/> |
11 |
<RowDefinition Height="0.115*"/> |
12 |
</Grid.RowDefinitions>
|
13 |
<Grid.ColumnDefinitions>
|
14 |
<ColumnDefinition Width="1.3*" /> |
15 |
<ColumnDefinition Width="2.2*" /> |
16 |
<ColumnDefinition Width="0.8*" /> |
17 |
</Grid.ColumnDefinitions>
|
18 |
<Border Grid.Column="0" Grid.ColumnSpan="1" BorderThickness="1,1,0,1" BorderBrush="#00B4FF" Background="#00B4FF"> |
19 |
<Grid Margin="0,0,0,0"> |
20 |
<Rectangle Fill="White" HorizontalAlignment="Left" Stroke="Black" Width="10" Margin="8,10,10,10" Height="30"/> |
21 |
<StackPanel VerticalAlignment="Center"> |
22 |
<TextBlock Text="DeepView Converter" FontWeight="Bold" Margin="23,0,0,0" Foreground="White" FontSize="26.667" FontFamily="NanumGothic"/> |
23 |
</StackPanel>
|
24 |
<TextBlock Text="BPI Team : H2011357(조장원)" FontWeight="Bold" HorizontalAlignment="Right" VerticalAlignment="Bottom" Foreground="White" FontSize="10" Margin="5"/> |
25 |
</Grid>
|
26 |
</Border>
|
27 |
<Border Grid.Column="1" Grid.ColumnSpan="2" BorderThickness="1" BorderBrush="#00B4FF"> |
28 |
<Grid Margin="0,5,0,0"> |
29 |
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,5,0,0" > |
30 |
<TextBlock Text="Project Number" VerticalAlignment="Center" HorizontalAlignment="Center" Foreground="#00B4FF" Margin="0,0,10,0"/> |
31 |
<TextBox x:Name="tbPrjNo" Width="100" Margin="3" Text="110088" HorizontalContentAlignment="Right"/> |
32 |
<telerik:RadButton x:Name="btnVpPath" Content="Clear" VerticalAlignment="Center" Margin="3" telerik:StyleManager.Theme="Metro"/> |
33 |
</StackPanel>
|
34 |
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,42,0,0"> |
35 |
<TextBlock VerticalAlignment="Center" Margin="3" Grid.Row="0" Text="Creator Number" Foreground="#00B4FF"/> |
36 |
<TextBox x:Name="txtPdfAddress" VerticalAlignment="Center" Margin="3" Width="100" Grid.Column="1" Grid.Row="0" Text="H2011357" |
37 |
HorizontalContentAlignment="Right" HorizontalAlignment="Left"/> |
38 |
<telerik:RadButton VerticalAlignment="Center" Margin="3,3,3,3" Grid.Column="1" Content="Clear" HorizontalAlignment="Right" x:Name="btnCopyPDFPath" |
39 |
telerik:StyleManager.Theme="Metro"/> |
40 |
</StackPanel>
|
41 |
|
42 |
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,80,0,0"> |
43 |
<TextBlock VerticalAlignment="Center" Margin="3" Grid.Row="1" Text="Slip Number" Foreground="#00B4FF"/> |
44 |
<TextBox x:Name="tbSlip" VerticalAlignment="Center" Margin="3" Width="100" Grid.Column="1" Grid.Row="1" Text="" |
45 |
HorizontalAlignment="Left"/> |
46 |
<telerik:RadButton VerticalAlignment="Center" Margin="3,3,3,3" Grid.Column="1" Content="Clear" HorizontalAlignment="Right" x:Name="btnCopyXpsPath" |
47 |
telerik:StyleManager.Theme="Metro"/> |
48 |
</StackPanel>
|
49 |
|
50 |
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,120,0,0"> |
51 |
<TextBlock VerticalAlignment="Center" Margin="3" Grid.Row="1" Text="PDF Path" Foreground="#00B4FF"/> |
52 |
<TextBox x:Name="tbPDFPath" VerticalAlignment="Center" Margin="3" Width="550" Grid.Column="1" Grid.Row="1" HorizontalAlignment="Left" |
53 |
Text="http://portal.daelimplant.com/110088_App/VPCS_DOCLIB/9800/9759/From Vendor/VP-110088-46-318-004_Bill of Material.pdf" /> |
54 |
<telerik:RadButton VerticalAlignment="Center" Margin="3,3,3,3" Grid.Column="1" Content="Clear" HorizontalAlignment="Right" x:Name="btnPDFPath" |
55 |
telerik:StyleManager.Theme="Metro"/> |
56 |
</StackPanel>
|
57 |
|
58 |
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,100,0,0"> |
59 |
<TextBlock x:Name="tl_existNonCrop" VerticalAlignment="Center" Margin="3" Grid.Row="1" Text="NonCrop 파일이 존재합니다" Foreground="#00B4FF" |
60 |
Visibility="Collapsed"/> |
61 |
</StackPanel>
|
62 |
<StackPanel HorizontalAlignment="Right" Margin="0,10,468,0" Orientation="Horizontal" VerticalAlignment="Top"> |
63 |
<TextBlock Foreground="#00B4FF" Grid.Row="1" Margin="3" Text="ItemID" VerticalAlignment="Center" /> |
64 |
<TextBox Grid.Column="1" Grid.Row="1" HorizontalAlignment="Left" Margin="3" Name="tbItemID" Text="" VerticalAlignment="Center" Width="100" /> |
65 |
<telerik:RadButton Content="Clear" Grid.Column="1" HorizontalAlignment="Right" Margin="3,3,3,3" Name="radButton1" telerik:StyleManager.Theme="Metro" VerticalAlignment="Center" /> |
66 |
</StackPanel>
|
67 |
</Grid>
|
68 |
</Border>
|
69 |
<Border Grid.Row="1" Grid.Column="2" Grid.RowSpan="3" BorderThickness="0,0,1,1" BorderBrush="#00B4FF"> |
70 |
<StackPanel>
|
71 |
<telerik:RadButton x:Name="btnSingleVPConveter" Content="단일 변환" |
72 |
telerik:StyleManager.Theme="Metro" Margin="1" Background="White" Foreground="#00B4FF" Height="30" Click="btnSingleVPConveter_Click" /> |
73 |
<telerik:RadButton x:Name="btnSlipConvert" Content="Slip 변환" |
74 |
telerik:StyleManager.Theme="Metro" Margin="1" Background="#00B4FF" Foreground="White" Height="30" |
75 |
Click="btnSlipConvert_Click" /> |
76 |
<telerik:RadButton x:Name="btnPrjTakeNConveter" Content="프로젝트 변환(최신부터)" Click="btnPrjTakeNConveter_Click" |
77 |
telerik:StyleManager.Theme="Metro" Margin="1" Background="White" Foreground="#00B4FF" Height="30"/> |
78 |
<telerik:RadButton x:Name="btnWebConveter" Content="Web(단일)" Click="btnWebSingleConveter_Click" |
79 |
telerik:StyleManager.Theme="Metro" Margin="1,50,1,1" Background="White" Foreground="#00B4FF" Height="30"/> |
80 |
<telerik:RadButton x:Name="btnWebSlipConveter" Content="Web(Slip)" Click="btnWebSlipConveter_Click" |
81 |
telerik:StyleManager.Theme="Metro" Background="White" Foreground="#00B4FF" Height="30"/> |
82 |
<telerik:RadButton x:Name="btnWebPrjConveter" Content="Web(프로젝트)" Click="btnWebPrjConveter_Click" |
83 |
telerik:StyleManager.Theme="Metro" Background="White" Foreground="#00B4FF" Height="30"/> |
84 |
</StackPanel>
|
85 |
</Border>
|
86 |
<Border BorderThickness="0" BorderBrush="#00B4FF" Grid.Column="1" Grid.ColumnSpan="1" Grid.Row="1" Grid.RowSpan="3" Background="#00B4FF" Margin="1"> |
87 |
<Grid>
|
88 |
<Grid.RowDefinitions>
|
89 |
<RowDefinition Height="0.5*"></RowDefinition> |
90 |
<RowDefinition Height="9.5*"></RowDefinition> |
91 |
</Grid.RowDefinitions>
|
92 |
<telerik:RadListBox x:Name="lstProcess" telerik:StyleManager.Theme="Metro" Grid.Row="2"/> |
93 |
</Grid>
|
94 |
</Border>
|
95 |
</Grid>
|
96 |
</Window>
|