markus / KCOM / MainWindow.xaml @ b2d0f316
이력 | 보기 | 이력해설 | 다운로드 (1.3 KB)
1 | 4fcb686a | taeseongkim | <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 | d33ef543 | taeseongkim | <Grid>
|
21 | 787a4489 | KangIngu | <Grid.RowDefinitions>
|
22 | 4fcb686a | taeseongkim | <RowDefinition Height="Auto" /> |
23 | <RowDefinition Height="*" /> |
||
24 | 787a4489 | KangIngu | </Grid.RowDefinitions>
|
25 | 4fcb686a | taeseongkim | <view:TopMenu x:Name="dzTopMenu" VerticalAlignment="Top" /> |
26 | <view:MainMenu
|
||
27 | x:Name="dzMainMenu" |
||
28 | Grid.Row="1" |
||
29 | VerticalAlignment="Stretch" /> |
||
30 | 787a4489 | KangIngu | </Grid>
|
31 | 68302e9d | taeseongkim | </cWin:CustomWindow> |