markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / ConvertDocumentDialog.xaml @ f85a8cad
이력 | 보기 | 이력해설 | 다운로드 (3.61 KB)
1 |
<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 |
xmlns:controls="clr-namespace:Markus.Service.StationController.Controls" |
10 |
Header="Convert Items Excel Export" Background="White" |
11 |
mc:Ignorable="d" Height="404" Width="349" telerik:StyleManager.Theme="VisualStudio2013"> |
12 |
<telerik:RadWindow.Resources>
|
13 |
<Style TargetType="{x:Type telerik:GridViewCell}" x:Key="OriginalFileGridViewCell"> |
14 |
<Setter Property="HorizontalContentAlignment" Value="Left"/> |
15 |
</Style>
|
16 |
</telerik:RadWindow.Resources>
|
17 |
<telerik:RadWindow.DataContext>
|
18 |
<VM:ConvertDocumentDialogViewModel/> |
19 |
</telerik:RadWindow.DataContext>
|
20 |
<Grid>
|
21 |
<Grid.RowDefinitions>
|
22 |
<RowDefinition Height="9*"/> |
23 |
<RowDefinition Height="*"/> |
24 |
</Grid.RowDefinitions>
|
25 |
|
26 |
<Grid>
|
27 |
<telerik:RadGridView
|
28 |
ItemsSource="{Binding Document_Items}" |
29 |
RowHeight="50" GroupRenderMode="Flat" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" |
30 |
SelectionMode="Extended" IsFilteringAllowed="True" |
31 |
RowIndicatorVisibility="Collapsed" ScrollViewer.CanContentScroll="True" |
32 |
CanUserFreezeColumns="False" |
33 |
AutoGenerateColumns="False"> |
34 |
<!--SelectedItem="{Binding SelectedDocument, Mode=TwoWay}"-->
|
35 |
<telerik:RadGridView.Columns>
|
36 |
<!--<telerik:GridViewSelectColumn />-->
|
37 |
<telerik:GridViewDataColumn>
|
38 |
<telerik:GridViewDataColumn.CellTemplate>
|
39 |
<DataTemplate>
|
40 |
<CheckBox IsChecked="{Binding IsChecked, Mode=TwoWay}" |
41 |
HorizontalAlignment="Center"/> |
42 |
</DataTemplate>
|
43 |
</telerik:GridViewDataColumn.CellTemplate>
|
44 |
</telerik:GridViewDataColumn>
|
45 |
<telerik:GridViewDataColumn Header="GroupNO" |
46 |
DataMemberBinding="{Binding Group_NO, Mode=TwoWay}" Width="*" /> |
47 |
<telerik:GridViewDataColumn Header="DocumentNO" |
48 |
DataMemberBinding="{Binding Document_NO, Mode=TwoWay}" Width="*" /> |
49 |
<telerik:GridViewDataColumn Header="DocumentID" |
50 |
DataMemberBinding="{Binding Document_ID, Mode=TwoWay}" Width="*" /> |
51 |
<telerik:GridViewDataColumn Header="DocumentID" |
52 |
DataMemberBinding="{Binding DocumentID, Mode=TwoWay}" Width="*" /> |
53 |
</telerik:RadGridView.Columns>
|
54 |
</telerik:RadGridView>
|
55 |
</Grid>
|
56 |
|
57 |
<Grid Grid.Row="1"> |
58 |
<Grid.ColumnDefinitions>
|
59 |
<ColumnDefinition Width="*"/> |
60 |
<ColumnDefinition Width="*"/> |
61 |
</Grid.ColumnDefinitions>
|
62 |
|
63 |
<telerik:RadButton Content=" CONVERT" Command="{Binding DocumentConvertCommand , Mode=TwoWay}" Grid.Column="0" Width="100" Margin="0,0,20,0" Height="24"/> |
64 |
<telerik:RadButton Content=" 닫 기" VerticalAlignment="Center" IsCancel="True" Grid.Column="1" Width="100" Margin="0,0,20,0" Height="24"/> |
65 |
</Grid>
|
66 |
</Grid>
|
67 |
</telerik:RadWindow>
|