markus / KCOM / MainWindow.xaml @ 84545cb3
이력 | 보기 | 이력해설 | 다운로드 (5.15 KB)
1 |
<Window x:Class="KCOM.MainWindow" |
---|---|
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:local="clr-namespace:KCOM" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
7 |
xmlns:control="clr-namespace:KCOM.Controls" |
8 |
xmlns:view="clr-namespace:KCOM.Views" |
9 |
mc:Ignorable="d" |
10 |
WindowStyle="None" WindowStartupLocation="CenterScreen" ResizeMode="CanResizeWithGrip" AllowsTransparency="True" |
11 |
Title="MARKUS"> |
12 |
<Window.Resources>
|
13 |
<Style x:Key="NoMarginGrid" TargetType="{x:Type Grid}"> |
14 |
<Setter Property="Margin" Value="0"/> |
15 |
</Style>
|
16 |
</Window.Resources>
|
17 |
<Grid Style="{StaticResource NoMarginGrid}"> |
18 |
<Grid.RowDefinitions>
|
19 |
<RowDefinition Height="Auto"/> |
20 |
<RowDefinition Height="Auto"/> |
21 |
<RowDefinition Height="Auto"/> |
22 |
<RowDefinition Height="*"/> |
23 |
</Grid.RowDefinitions>
|
24 |
<Border VerticalAlignment="Stretch" MouseLeftButtonDown="WindowDragEvent" Background="{DynamicResource KCOMColor_TopMenubackgroundBrush}"> |
25 |
<Grid>
|
26 |
<StackPanel Orientation="Horizontal" Opacity="0.6" Margin="5,0" Visibility="Collapsed"> |
27 |
<telerik:RadRibbonButton SmallImage="/KCOM;component/Resources/Images/MenuImage/save.png" telerik:StyleManager.Theme="Office2016"/> |
28 |
<telerik:RadRibbonButton SmallImage="/KCOM;component/Resources/Images/MenuImage/printer.png" telerik:StyleManager.Theme="Office2016"/> |
29 |
<telerik:RadRibbonButton SmallImage="/KCOM;component/Resources/Images/MenuImage/pdf.png" telerik:StyleManager.Theme="Office2016"/> |
30 |
<telerik:RadRibbonButton SmallImage="/KCOM;component/Resources/Images/MenuImage/undo.png" telerik:StyleManager.Theme="Office2016"/> |
31 |
<telerik:RadRibbonButton SmallImage="/KCOM;component/Resources/Images/MenuImage/redo.png" telerik:StyleManager.Theme="Office2016"/> |
32 |
</StackPanel>
|
33 |
<TextBlock Text="MARKUS / DEMO Ver." Foreground="White" Margin="5,0" HorizontalAlignment="Center" VerticalAlignment="Center"/> |
34 |
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Stretch"> |
35 |
|
36 |
<!--강인구 수정-->
|
37 |
<TextBlock Text="ㅡ" Foreground="White" Padding="5" VerticalAlignment="Center" MouseDown="WinState" FontWeight="ExtraBold" FontSize="12"/> |
38 |
<TextBlock Text="ㅁ" Foreground="White" Padding="5" VerticalAlignment="Center" MouseDown="WinState" FontWeight="ExtraBold" FontSize="12"/> |
39 |
<TextBlock Text="X" Foreground="White" Padding="5" VerticalAlignment="Center" MouseDown="WinState" FontWeight="ExtraBold" FontSize="12"/> |
40 |
|
41 |
<!--<telerik:RadButton CommandParameter="Min" Click="RadButton_Click">
|
42 |
<TextBlock Text="ㅡ" Foreground="White" Padding="5" VerticalAlignment="Center" FontWeight="ExtraBold" FontSize="12"/>
|
43 |
</telerik:RadButton>
|
44 |
<telerik:RadButton CommandParameter="Max" Click="RadButton_Click">
|
45 |
<TextBlock Text="ㅁ" Foreground="White" Padding="5" VerticalAlignment="Center" FontWeight="ExtraBold" FontSize="12"/>
|
46 |
</telerik:RadButton>
|
47 |
<telerik:RadButton CommandParameter="Exit" Click="RadButton_Click">
|
48 |
<TextBlock Text="X" Foreground="White" Padding="5" VerticalAlignment="Center" FontWeight="ExtraBold" FontSize="12"/>
|
49 |
</telerik:RadButton>-->
|
50 |
</StackPanel>
|
51 |
</Grid>
|
52 |
</Border>
|
53 |
<view:TopMenu x:Name="dzTopMenu" Grid.Row="1" VerticalAlignment="Top"/> |
54 |
<view:MainMenu x:Name="dzMainMenu" Grid.Row="3" VerticalAlignment="Stretch"/> |
55 |
<Border Grid.Row="2" Background="#f1f1f1" MinHeight="30" Visibility="Collapsed"> |
56 |
<StackPanel Orientation="Horizontal"> |
57 |
<telerik:RadButton Content="Event1" Background="White" Padding="3" Margin="5" HorizontalAlignment="Left"/> |
58 |
<telerik:RadButton Content="Event2" Background="White" Padding="3" Margin="5" HorizontalAlignment="Left"/> |
59 |
<telerik:RadButton Content="Event3" Background="White" Padding="3" Margin="5" HorizontalAlignment="Left"/> |
60 |
<telerik:RadButton Content="Event4" Background="White" Padding="3" Margin="5" HorizontalAlignment="Left"/> |
61 |
<telerik:RadButton Content="Event5" Background="White" Padding="3" Margin="5" HorizontalAlignment="Left"/> |
62 |
<telerik:RadButton Content="Event6" Background="White" Padding="3" Margin="5" HorizontalAlignment="Left"/> |
63 |
<telerik:RadButton Content="Event7" Background="White" Padding="3" Margin="5" HorizontalAlignment="Left"/> |
64 |
<telerik:RadButton Content="Event8" Background="White" Padding="3" Margin="5" HorizontalAlignment="Left"/> |
65 |
</StackPanel>
|
66 |
</Border>
|
67 |
</Grid>
|
68 |
</Window>
|