markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / FinalPDFAddDialog.xaml @ e139272d
이력 | 보기 | 이력해설 | 다운로드 (4.95 KB)
1 | 3bde451b | semi | <telerik:RadWindow x:Class="Markus.Service.StationController.Views.FinalPDFAddDialog" |
---|---|---|---|
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 | xmlns:VM="clr-namespace:Markus.Service.StationController.ViewModel" |
||
6 | 2c634aed | semi | Header="FinalPDFAddDialog" Height="300" Width="500" telerik:StyleManager.Theme="VisualStudio2013"> |
7 | 3bde451b | semi | <telerik:RadWindow.DataContext>
|
8 | <VM:FinalPDFAddDialogViewModel/> |
||
9 | </telerik:RadWindow.DataContext>
|
||
10 | <Grid Height="130" Width="480"> |
||
11 | <Grid.Resources>
|
||
12 | <ResourceDictionary>
|
||
13 | |||
14 | <Style x:Key="InfoStyle" TargetType="{x:Type TextBox}"> |
||
15 | <Setter Property="Margin" Value="5,5,0,0"/> |
||
16 | <Setter Property="VerticalAlignment" Value="Center"/> |
||
17 | <Setter Property="Foreground" Value="Black"/> |
||
18 | <Setter Property="Background" Value="Transparent"/> |
||
19 | <Setter Property="BorderBrush" Value="Transparent"/> |
||
20 | <Setter Property="BorderThickness" Value="0"/> |
||
21 | <Setter Property="IsReadOnly" Value="true"/> |
||
22 | <Setter Property="FocusVisualStyle" Value="{x:Null}"/> |
||
23 | <Setter Property="ScrollViewer.PanningMode" Value="VerticalFirst"/> |
||
24 | <Setter Property="Stylus.IsFlicksEnabled" Value="False"/> |
||
25 | <Setter Property="Template"> |
||
26 | <Setter.Value>
|
||
27 | <ControlTemplate TargetType="{x:Type TextBox}"> |
||
28 | <Border x:Name="Bd" |
||
29 | BorderThickness="{TemplateBinding BorderThickness}" |
||
30 | SnapsToDevicePixels="true"> |
||
31 | <ScrollViewer x:Name="PART_ContentHost" BorderThickness="{TemplateBinding BorderThickness}" |
||
32 | SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/> |
||
33 | </Border>
|
||
34 | </ControlTemplate>
|
||
35 | </Setter.Value>
|
||
36 | </Setter>
|
||
37 | </Style>
|
||
38 | |||
39 | <Style TargetType="TextBlock"> |
||
40 | <Setter Property="FontFamily" Value="Segoe UI Semibold" /> |
||
41 | <Setter Property="VerticalAlignment" Value="Center" /> |
||
42 | <Setter Property="Foreground" Value="#FF7A7A7A" /> |
||
43 | </Style>
|
||
44 | |||
45 | <Style TargetType="TextBox"> |
||
46 | <Setter Property="FontFamily" Value="Segoe UI Semibold" /> |
||
47 | <Setter Property="VerticalAlignment" Value="Center" /> |
||
48 | <Setter Property="Foreground" Value="#FF333333" /> |
||
49 | <Setter Property="BorderBrush" Value="#FFD6D4D4" /> |
||
50 | </Style>
|
||
51 | </ResourceDictionary>
|
||
52 | </Grid.Resources>
|
||
53 | |||
54 | <Grid x:Name="LayoutRoot" Background="White"> |
||
55 | <Grid.RowDefinitions>
|
||
56 | <RowDefinition /> |
||
57 | <RowDefinition Height="Auto" /> |
||
58 | <RowDefinition Height="Auto" /> |
||
59 | </Grid.RowDefinitions>
|
||
60 | |||
61 | <Grid Grid.Row="0" Margin="10"> |
||
62 | <Grid.ColumnDefinitions>
|
||
63 | <ColumnDefinition Width="70" /> |
||
64 | <ColumnDefinition Width="10" /> |
||
65 | <ColumnDefinition Width="*"/> |
||
66 | <ColumnDefinition Width="10" /> |
||
67 | <ColumnDefinition Width="90" /> |
||
68 | <ColumnDefinition Width="10" /> |
||
69 | <ColumnDefinition Width="1.5*"/> |
||
70 | </Grid.ColumnDefinitions>
|
||
71 | <Grid.RowDefinitions>
|
||
72 | <RowDefinition Height="25"/> |
||
73 | <RowDefinition Height="25"/> |
||
74 | </Grid.RowDefinitions>
|
||
75 | <TextBlock Grid.Row="0" Text="Project NO" /> |
||
76 | <TextBlock Grid.Row="0" Grid.Column="4" Text="Document ID" /> |
||
77 | <TextBlock Grid.Row="1" Grid.Column="0" Text="DocInfo_ID" /> |
||
78 | |||
79 | <TextBox Text="{Binding FinalPDFAdd_Project_NO, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Row="0" Grid.Column="2" /> |
||
80 | <TextBox Text="{Binding FinalPDFAdd_Document_ID, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Row="0" Grid.Column="6" /> |
||
81 | <TextBox Text="{Binding FinalPDFAdd_DocInfo_ID, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Row="1" Grid.Column="2" Grid.ColumnSpan="5"/> |
||
82 | </Grid>
|
||
83 | <StackPanel Orientation="Horizontal" Grid.Row="1" HorizontalAlignment="Right" Margin="0 0 0 10"> |
||
84 | <telerik:RadButton Content=" SEND" MinWidth="50" Margin="8 0" VerticalAlignment="Center" |
||
85 | Command="{Binding FinalPDFAdd_OKCommand , Mode=TwoWay}" /> |
||
86 | <telerik:RadButton Content="CANCEL" MinWidth="80" Margin="0 0 10 0" VerticalAlignment="Center" IsCancel="True" Name="Close" /> |
||
87 | </StackPanel>
|
||
88 | </Grid>
|
||
89 | </Grid>
|
||
90 | </telerik:RadWindow> |