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