markus / KCOM / Controls / SymbolPrompt.xaml @ dea3d68a
이력 | 보기 | 이력해설 | 다운로드 (2.32 KB)
1 | 684ef11c | ljiyeon | <UserControl x:Class="KCOM.Controls.SymbolPrompt" |
---|---|---|---|
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" |
||
8 | Height="100" d:DesignWidth="400"> |
||
9 | <Grid Background="#FFEEEEF2"> |
||
10 | <Grid.ColumnDefinitions>
|
||
11 | <ColumnDefinition Width="50"/> |
||
12 | <ColumnDefinition Width="350"> |
||
13 | </ColumnDefinition>
|
||
14 | </Grid.ColumnDefinitions>
|
||
15 | <!--
|
||
16 | <Grid.RowDefinitions>
|
||
17 | <RowDefinition Height="35"/>
|
||
18 | <RowDefinition Height="25"/>
|
||
19 | <RowDefinition Height="1"/>
|
||
20 | <RowDefinition/>
|
||
21 | </Grid.RowDefinitions>
|
||
22 | -->
|
||
23 | <StackPanel Grid.Column="0" Margin="0,10,0,0"> |
||
24 | <Image Height="40" Source="/KCOM;component/Resources/Images/MenuImage_New/selectInk.png"/> |
||
25 | </StackPanel>
|
||
26 | <StackPanel Grid.Column="1"> |
||
27 | 41e3c8ac | swate0609 | <DockPanel Grid.Row="0" Margin="0,10,0,0" HorizontalAlignment="Left" Width="350"> |
28 | 684ef11c | ljiyeon | <Label>Name :</Label> |
29 | 41e3c8ac | swate0609 | <TextBox Margin="5" x:Name="symbolName" /> |
30 | 684ef11c | ljiyeon | </DockPanel>
|
31 | <DockPanel Grid.Row="1" Margin="0,0,0,0" HorizontalAlignment="Left" > |
||
32 | dea3d68a | swate0609 | <RadioButton Content="PNG" Name="pngRadioBox" IsChecked="True" Margin="5"/> |
33 | <RadioButton Content="SVG" Name="svgRadioBox" Margin="5"/> |
||
34 | 684ef11c | ljiyeon | <!-- IsEnabled="{Binding ElementName=DeleteEverythingCheckbox, Path=IsChecked}" Text="Here is some text to edit" -->
|
35 | </DockPanel>
|
||
36 | <StackPanel Grid.Row="2" Background="#FFCCCEDB"></StackPanel> |
||
37 | <StackPanel Grid.Row="3" Margin="0,0,10,0" HorizontalAlignment="Right" VerticalAlignment="Center"> |
||
38 | 41e3c8ac | swate0609 | <DockPanel>
|
39 | <Button Width="70" x:Name="BtnOK" Margin="0,0,10,0" PreviewKeyDown="BtnOK_PreviewKeyDown" PreviewMouseLeftButtonDown="BtnOK_MouseLeftButtonDown">OK</Button> |
||
40 | <Button Width="70" x:Name="BtnCancel" Click="BtnCancel_Click">Cancel</Button> |
||
41 | </DockPanel>
|
||
42 | 684ef11c | ljiyeon | </StackPanel>
|
43 | |||
44 | </StackPanel>
|
||
45 | |||
46 | </Grid>
|
||
47 | </UserControl> |