markus / KCOM / MainWindow.xaml @ 66bd3240
이력 | 보기 | 이력해설 | 다운로드 (1.3 KB)
1 |
<cWin:CustomWindow
|
---|---|
2 |
x:Class="KCOM.MainWindow" |
3 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
4 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
5 |
xmlns:cWin="clr-namespace:KCOM.Controls.CustomizedWindow" |
6 |
xmlns:control="clr-namespace:KCOM.Controls" |
7 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
8 |
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" |
9 |
xmlns:local="clr-namespace:KCOM" |
10 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
11 |
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
12 |
xmlns:view="clr-namespace:KCOM.Views" |
13 |
Title="MARKUS" |
14 |
telerik:TabNavigationExtensions.IsTabStop="False" |
15 |
AllowDrop="True" |
16 |
Background="{DynamicResource KCOMColor_TopMenubackgroundBrush}" |
17 |
Style="{StaticResource VS2012WindowStyle}" |
18 |
WindowStartupLocation="CenterScreen" |
19 |
mc:Ignorable="d"> |
20 |
<Grid>
|
21 |
<Grid.RowDefinitions>
|
22 |
<RowDefinition Height="Auto" /> |
23 |
<RowDefinition Height="*" /> |
24 |
</Grid.RowDefinitions>
|
25 |
<view:TopMenu x:Name="dzTopMenu" VerticalAlignment="Top" /> |
26 |
<view:MainMenu
|
27 |
x:Name="dzMainMenu" |
28 |
Grid.Row="1" |
29 |
VerticalAlignment="Stretch" /> |
30 |
</Grid>
|
31 |
</cWin:CustomWindow>
|