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