markus / KCOM / Controls / MacroEdit.xaml @ 95c73392
이력 | 보기 | 이력해설 | 다운로드 (1.05 KB)
1 | b74a9c91 | taeseongkim | <UserControl xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" x:Class="KCOM.Controls.MacroEdit" |
---|---|---|---|
2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||
3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||
4 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||
5 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||
6 | xmlns:local="clr-namespace:KCOM.Controls" |
||
7 | mc:Ignorable="d" Background="White" |
||
8 | d:DesignHeight="450" d:DesignWidth="800"> |
||
9 | <Grid>
|
||
10 | <Grid.RowDefinitions>
|
||
11 | <RowDefinition Height="Auto"/> |
||
12 | <RowDefinition/> |
||
13 | <RowDefinition Height="Auto"/> |
||
14 | </Grid.RowDefinitions>
|
||
15 | <Grid.ColumnDefinitions>
|
||
16 | <ColumnDefinition/> |
||
17 | <ColumnDefinition/> |
||
18 | </Grid.ColumnDefinitions>
|
||
19 | <StackPanel>
|
||
20 | <TextBlock Text="Macro Select : "/> |
||
21 | <telerik:RadComboBox x:Name="cboMacro"/> |
||
22 | </StackPanel>
|
||
23 | </Grid>
|
||
24 | </UserControl> |