markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / ConvertExcelDialog.xaml @ 19d6b221
이력 | 보기 | 이력해설 | 다운로드 (2.17 KB)
1 |
<telerik:RadWindow x:Class="Markus.Service.StationController.Views.ConvertExcelDialog" |
---|---|
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.DataContext>
|
12 |
<VM:ConvertExcelDialogViewModel/> |
13 |
</telerik:RadWindow.DataContext>
|
14 |
<Grid>
|
15 |
<Grid.ColumnDefinitions>
|
16 |
<ColumnDefinition /> |
17 |
<ColumnDefinition/> |
18 |
</Grid.ColumnDefinitions>
|
19 |
<telerik:RadListBox Grid.Column="0" ItemsSource="{Binding ItemsSource}" IsEnabled="True" HorizontalContentAlignment="Left" HorizontalAlignment="Center" Background="White"> |
20 |
<telerik:RadListBox.ItemTemplate>
|
21 |
<DataTemplate>
|
22 |
<StackPanel Orientation="Horizontal"> |
23 |
<CheckBox IsChecked="{Binding IsChecked, Mode=TwoWay}" /> |
24 |
<TextBlock Text="{Binding Name}" /> |
25 |
</StackPanel>
|
26 |
</DataTemplate>
|
27 |
</telerik:RadListBox.ItemTemplate>
|
28 |
</telerik:RadListBox>
|
29 |
|
30 |
<StackPanel HorizontalAlignment="Center" Grid.Column="1" > |
31 |
<telerik:RadButton Content=" 전체 선택" Margin="0,50,0,10" Command="{Binding ALL_SelectedCommand , Mode=TwoWay}" /> |
32 |
|
33 |
<telerik:RadButton Content=" 전체 해제" Margin="0,0,0,10" Command="{Binding ALL_DeletedCommand , Mode=TwoWay}" /> |
34 |
<telerik:RadButton Content=" 저 장" Command="{Binding SaveCommand , Mode=TwoWay}" /> |
35 |
<telerik:RadButton Content=" 닫 기" Margin="0,80,0,0" VerticalAlignment="Center" IsCancel="True" /> |
36 |
</StackPanel>
|
37 |
</Grid>
|
38 |
</telerik:RadWindow>
|