markus / KCOM / Controls / SymbolPrompt.xaml @ b2c6901f
이력 | 보기 | 이력해설 | 다운로드 (2.16 KB)
1 |
<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 |
<DockPanel Grid.Row="0" Margin="0,10,0,0" HorizontalAlignment="Left"> |
28 |
<Label>Name :</Label> |
29 |
<TextBox Margin="5" Width="300" x:Name="symbolName" /> |
30 |
</DockPanel>
|
31 |
<DockPanel Grid.Row="1" Margin="0,0,0,0" HorizontalAlignment="Left" > |
32 |
<RadioButton Content="SVG" Name="svgRadioBox" IsChecked="True" Margin="5"/> |
33 |
<RadioButton Content="PNG" Name="pngRadioBox" Margin="5"/> |
34 |
<!-- 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 |
<Button Width="70" x:Name="BtnOK" PreviewKeyDown="BtnOK_PreviewKeyDown" PreviewMouseLeftButtonDown="BtnOK_MouseLeftButtonDown">OK</Button> |
39 |
</StackPanel>
|
40 |
|
41 |
</StackPanel>
|
42 |
|
43 |
</Grid>
|
44 |
</UserControl>
|