프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / ConvertAddDialog.xaml @ 8c128693

이력 | 보기 | 이력해설 | 다운로드 (4.66 KB)

1
<telerik:RadWindow x:Class="Markus.Service.StationController.Views.ConvertAddDialog"
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
        Header="Convert Items Insert" Height="300" Width="500" >
7
    <telerik:RadWindow.DataContext>
8
        <VM:ConvertAddDialogViewModel/>
9
    </telerik:RadWindow.DataContext>
10
    <Grid Height="200" Width="400">
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="90" />
64
                    <ColumnDefinition Width="10" />
65
                    <ColumnDefinition />
66
                </Grid.ColumnDefinitions>
67
                <Grid.RowDefinitions>
68
                    <RowDefinition />
69
                    <RowDefinition />
70
                    <RowDefinition />
71
                </Grid.RowDefinitions>
72

    
73
                <TextBlock Grid.Row="0" Text="Project NO" />
74
                <TextBlock Grid.Row="1" Text="DOCUMENT ID" />
75
                <TextBlock Grid.Row="2" Text="Document URL" />
76
 
77
                <TextBox Text="{Binding ConverAdd_Project_NO, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Row="0" Grid.Column="2" />
78
                <TextBox Text="{Binding ConverAdd_DOCUMENT_ID, Mode=TwoWay,  UpdateSourceTrigger=PropertyChanged}" Grid.Row="1" Grid.Column="2" />
79
                <TextBox Text="{Binding ConverAdd_DOCUMENT_URL,  Mode=TwoWay,  UpdateSourceTrigger=PropertyChanged}" Grid.Row="2" Grid.Column="2" />
80

    
81
            </Grid>
82
            <StackPanel Orientation="Horizontal" Grid.Row="1" HorizontalAlignment="Right" Margin="0 0 0 10">
83

    
84
                <telerik:RadButton Content=" SEND" MinWidth="50" Margin="8 0" VerticalAlignment="Center"
85
                                                           Command="{Binding ConverAdd_OKCommand , Mode=TwoWay}" />
86

    
87
                <telerik:RadButton Content="CANCEL" MinWidth="80" Margin="0 0 10 0" VerticalAlignment="Center" IsCancel="True" Name="Close" />
88
            </StackPanel>
89

    
90
        </Grid>
91
    </Grid>
92
</telerik:RadWindow>
클립보드 이미지 추가 (최대 크기: 500 MB)