markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / ConvertDocumentDialog.xaml @ f047c8bf
이력 | 보기 | 이력해설 | 다운로드 (3.07 KB)
1 | f047c8bf | semi | <telerik:RadWindow x:Class="Markus.Service.StationController.Views.ConvertDocumentDialog" |
---|---|---|---|
2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||
3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||
4 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||
5 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||
6 | xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
||
7 | xmlns:local="clr-namespace:Markus.Service.StationController.Views" |
||
8 | xmlns:VM="clr-namespace:Markus.Service.StationController.ViewModel" |
||
9 | Header="Convert Items Excel Export" Background="White" |
||
10 | mc:Ignorable="d" Height="404" Width="349" telerik:StyleManager.Theme="VisualStudio2013"> |
||
11 | <telerik:RadWindow.Resources>
|
||
12 | <Style TargetType="{x:Type telerik:GridViewCell}" x:Key="OriginalFileGridViewCell"> |
||
13 | <Setter Property="HorizontalContentAlignment" Value="Left"/> |
||
14 | </Style>
|
||
15 | </telerik:RadWindow.Resources>
|
||
16 | <telerik:RadWindow.DataContext>
|
||
17 | <VM:ConvertDocumentDialogViewModel/> |
||
18 | </telerik:RadWindow.DataContext>
|
||
19 | <Grid>
|
||
20 | <Grid.RowDefinitions>
|
||
21 | <RowDefinition Height="9*"/> |
||
22 | <RowDefinition Height="*"/> |
||
23 | </Grid.RowDefinitions>
|
||
24 | |||
25 | <Grid>
|
||
26 | <telerik:RadGridView
|
||
27 | ItemsSource="{Binding Document_Items}" |
||
28 | RowHeight="50" GroupRenderMode="Flat" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" |
||
29 | SelectionMode="Extended" IsFilteringAllowed="True" |
||
30 | SelectedItem="{Binding SelectedDocument, Mode=TwoWay}" |
||
31 | RowIndicatorVisibility="Collapsed" ScrollViewer.CanContentScroll="True" |
||
32 | CanUserFreezeColumns="False" |
||
33 | AutoGenerateColumns="False"> |
||
34 | <telerik:RadGridView.Columns>
|
||
35 | <telerik:GridViewSelectColumn /> |
||
36 | <telerik:GridViewDataColumn Header="Group_NO" |
||
37 | DataMemberBinding="{Binding Group_NO, Mode=TwoWay}" Width="*" /> |
||
38 | <telerik:GridViewDataColumn Header="Document_NO" |
||
39 | DataMemberBinding="{Binding Document_NO, Mode=TwoWay}" Width="*" /> |
||
40 | <telerik:GridViewDataColumn Header="Document_ID" |
||
41 | DataMemberBinding="{Binding Document_ID, Mode=TwoWay}" Width="*" /> |
||
42 | <telerik:GridViewDataColumn Header="DocumentID" |
||
43 | DataMemberBinding="{Binding DocumentID, Mode=TwoWay}" Width="*" /> |
||
44 | </telerik:RadGridView.Columns>
|
||
45 | </telerik:RadGridView>
|
||
46 | </Grid>
|
||
47 | |||
48 | <Grid Grid.Row="1"> |
||
49 | <Grid.ColumnDefinitions>
|
||
50 | <ColumnDefinition Width="*"/> |
||
51 | <ColumnDefinition Width="*"/> |
||
52 | </Grid.ColumnDefinitions>
|
||
53 | |||
54 | <telerik:RadButton Content=" CONVERT" Command="{Binding DocumentConvertCommand , Mode=TwoWay}" Grid.Column="0" Width="100" Margin="0,0,20,0" Height="24"/> |
||
55 | <telerik:RadButton Content=" 닫 기" VerticalAlignment="Center" IsCancel="True" Grid.Column="1" Width="100" Margin="0,0,20,0" Height="24"/> |
||
56 | </Grid>
|
||
57 | </Grid>
|
||
58 | </telerik:RadWindow> |