markus / ConvertService / ServiceBase / Markus.Service.StationController / MainWindow.xaml @ 8ff1bf3a
이력 | 보기 | 이력해설 | 다운로드 (3.89 KB)
1 | 53c9637d | taeseongkim | <Window x:Class="Markus.Service.StationController.MainWindow" |
---|---|---|---|
2 | ed79bff0 | taeseongkim | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
3 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||
4 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||
5 | 53c9637d | taeseongkim | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
6 | 31f18afa | taeseongkim | xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
7 | mc:Ignorable="d" d:DataContext="{d:DesignInstance vm:MainViewModel, IsDesignTimeCreatable=true}" |
||
8 | 45f9a2ad | taeseongkim | xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" |
9 | 0498c12e | taeseongkim | xmlns:vm="clr-namespace:Markus.Service.StationController.ViewModel" |
10 | 31f18afa | taeseongkim | xmlns:packIcon="clr-namespace:Markus.Mvvm.ToolKit.PackIcon;assembly=Markus.Mvvm.ToolKit" |
11 | 0498c12e | taeseongkim | xmlns:localData="clr-namespace:Markus.Service.StationController.Data" |
12 | 31f18afa | taeseongkim | Title="Markus Convert Service" Height="450" Width="800" d:DesignHeight="450" d:DesignWidth="800"> |
13 | <Window.Background>
|
||
14 | <ImageBrush/> |
||
15 | </Window.Background>
|
||
16 | 45f9a2ad | taeseongkim | <i:Interaction.Triggers>
|
17 | <i:EventTrigger EventName="Loaded"> |
||
18 | <i:InvokeCommandAction Command="{Binding LoadedCommand}"/> |
||
19 | </i:EventTrigger>
|
||
20 | <i:EventTrigger EventName="Closing"> |
||
21 | <i:InvokeCommandAction Command="{Binding ClosingCommand}"/> |
||
22 | </i:EventTrigger>
|
||
23 | </i:Interaction.Triggers>
|
||
24 | ed79bff0 | taeseongkim | <Window.DataContext>
|
25 | 0498c12e | taeseongkim | <vm:MainViewModel/> |
26 | ed79bff0 | taeseongkim | </Window.DataContext>
|
27 | 31f18afa | taeseongkim | <Grid>
|
28 | <Grid>
|
||
29 | <Grid.RowDefinitions>
|
||
30 | <RowDefinition Height="Auto"/> |
||
31 | <RowDefinition/> |
||
32 | </Grid.RowDefinitions>
|
||
33 | 92442e4a | taeseongkim | <Grid>
|
34 | 31f18afa | taeseongkim | <Grid.ColumnDefinitions>
|
35 | <ColumnDefinition Width="Auto"/> |
||
36 | <ColumnDefinition Width="Auto"/> |
||
37 | <ColumnDefinition/> |
||
38 | </Grid.ColumnDefinitions>
|
||
39 | <telerik:RadToggleButton IsThreeState="False" Width="50"> |
||
40 | <telerik:RadToggleButton.Content>
|
||
41 | <packIcon:PackIcon Kind="Bike"/> |
||
42 | </telerik:RadToggleButton.Content>
|
||
43 | <telerik:RadToggleButton.Style>
|
||
44 | <Style TargetType="telerik:RadToggleButton"> |
||
45 | <Setter Property="telerik:StyleManager.Theme" Value="{x:Null}"/> |
||
46 | <Setter Property="Background" Value="Transparent"/> |
||
47 | <Setter Property="BorderThickness" Value="0"/> |
||
48 | <Style.Triggers>
|
||
49 | <DataTrigger Binding="{Binding IsChecked}" Value="false"> |
||
50 | <Setter Property="Content" Value="Menu"/> |
||
51 | </DataTrigger>
|
||
52 | <DataTrigger Binding="{Binding IsChecked}" Value="true"> |
||
53 | <Setter Property="Content" Value="close"/> |
||
54 | </DataTrigger>
|
||
55 | </Style.Triggers>
|
||
56 | </Style>
|
||
57 | </telerik:RadToggleButton.Style>
|
||
58 | </telerik:RadToggleButton>
|
||
59 | <TextBlock Grid.Column="1" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,0,0,0" Style="{StaticResource TitleTextBoxStyle}" >Markus Convert Management</TextBlock> |
||
60 | <TextBlock Grid.Column="2" VerticalAlignment="Center" HorizontalAlignment="Center" |
||
61 | Text="{Binding SelectNavigationItem.Description}"/> |
||
62 | ed79bff0 | taeseongkim | </Grid>
|
63 | 31f18afa | taeseongkim | <ContentControl Grid.Row="1" Content="{Binding SelectNavigationItem.Content}"/> |
64 | <Grid/> |
||
65 | </Grid>
|
||
66 | <Grid Background="#807A7A7A"> |
||
67 | <Grid.ColumnDefinitions>
|
||
68 | <ColumnDefinition Width="Auto"/> |
||
69 | <ColumnDefinition Width="*"/> |
||
70 | </Grid.ColumnDefinitions>
|
||
71 | <telerik:RadListBox/> |
||
72 | </Grid>
|
||
73 | </Grid>
|
||
74 | </Window>
|
||
75 |