markus / KCOM / MainWindow.xaml @ d33ef543
이력 | 보기 | 이력해설 | 다운로드 (1.1 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" WindowStartupLocation="CenterScreen" |
10 |
Style="{StaticResource VS2012WindowStyle}" |
11 |
Background="{DynamicResource KCOMColor_TopMenubackgroundBrush}" |
12 |
telerik:TabNavigationExtensions.IsTabStop="False" |
13 |
Title="MARKUS" > |
14 |
<Grid>
|
15 |
<Grid.RowDefinitions>
|
16 |
<RowDefinition Height="Auto"/> |
17 |
<RowDefinition Height="*"/> |
18 |
</Grid.RowDefinitions>
|
19 |
<view:TopMenu x:Name="dzTopMenu" VerticalAlignment="Top"/> |
20 |
<view:MainMenu x:Name="dzMainMenu" Grid.Row="1" VerticalAlignment="Stretch"/> |
21 |
</Grid>
|
22 |
</Window>
|