markus / KCOM / MainWindow.xaml @ a1e2ba68
이력 | 보기 | 이력해설 | 다운로드 (1.3 KB)
1 |
<cWin:CustomWindow 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 |
xmlns:cWin="clr-namespace:KCOM.Controls.CustomizedWindow" |
12 |
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" |
13 |
Background="{DynamicResource KCOMColor_TopMenubackgroundBrush}" |
14 |
telerik:TabNavigationExtensions.IsTabStop="False" AllowDrop="True" |
15 |
Title="MARKUS" > |
16 |
<Grid>
|
17 |
<Grid.RowDefinitions>
|
18 |
<RowDefinition Height="Auto"/> |
19 |
<RowDefinition Height="*"/> |
20 |
</Grid.RowDefinitions>
|
21 |
<view:TopMenu x:Name="dzTopMenu" VerticalAlignment="Top"/> |
22 |
<view:MainMenu x:Name="dzMainMenu" Grid.Row="1" VerticalAlignment="Stretch"/> |
23 |
</Grid>
|
24 |
</cWin:CustomWindow>
|