markus / KCOM / Controls / SymbolPrompt.xaml @ 284ed1c7
이력 | 보기 | 이력해설 | 다운로드 (2.85 KB)
1 |
<UserControl
|
---|---|
2 |
x:Class="KCOM.Controls.SymbolPrompt" |
3 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
4 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
5 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
6 |
xmlns:local="clr-namespace:KCOM.Controls" |
7 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
8 |
Height="100" |
9 |
d:DesignWidth="400" |
10 |
mc:Ignorable="d"> |
11 |
<Grid Background="#FFEEEEF2"> |
12 |
<Grid.ColumnDefinitions>
|
13 |
<ColumnDefinition Width="50" /> |
14 |
<ColumnDefinition Width="350" /> |
15 |
</Grid.ColumnDefinitions>
|
16 |
<!--
|
17 |
<Grid.RowDefinitions>
|
18 |
<RowDefinition Height="35"/>
|
19 |
<RowDefinition Height="25"/>
|
20 |
<RowDefinition Height="1"/>
|
21 |
<RowDefinition/>
|
22 |
</Grid.RowDefinitions>-->
|
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
|
28 |
Grid.Row="0" |
29 |
Width="350" |
30 |
Margin="0,10,0,0" |
31 |
HorizontalAlignment="Left"> |
32 |
<Label>Name :</Label> |
33 |
<TextBox x:Name="symbolName" Margin="5" /> |
34 |
</DockPanel>
|
35 |
<DockPanel
|
36 |
Grid.Row="1" |
37 |
Margin="0,0,0,0" |
38 |
HorizontalAlignment="Left" |
39 |
Visibility="Collapsed"> |
40 |
<RadioButton
|
41 |
Name="pngRadioBox" |
42 |
Margin="5" |
43 |
Content="PNG" |
44 |
IsChecked="True" /> |
45 |
<RadioButton
|
46 |
Name="svgRadioBox" |
47 |
Margin="5" |
48 |
Content="SVG" /> |
49 |
<!-- IsEnabled="{Binding ElementName=DeleteEverythingCheckbox, Path=IsChecked}" Text="Here is some text to edit" -->
|
50 |
</DockPanel>
|
51 |
<StackPanel Grid.Row="2" Background="#FFCCCEDB" /> |
52 |
<StackPanel
|
53 |
Grid.Row="3" |
54 |
Margin="10,10,10,10" |
55 |
HorizontalAlignment="Right" |
56 |
VerticalAlignment="Bottom"> |
57 |
<DockPanel>
|
58 |
<Button
|
59 |
x:Name="BtnOK" |
60 |
Width="70" |
61 |
Margin="0,0,10,0" |
62 |
PreviewKeyDown="BtnOK_PreviewKeyDown" |
63 |
PreviewMouseLeftButtonDown="BtnOK_MouseLeftButtonDown"> |
64 |
OK |
65 |
</Button>
|
66 |
<Button
|
67 |
x:Name="BtnCancel" |
68 |
Width="70" |
69 |
Click="BtnCancel_Click"> |
70 |
Cancel |
71 |
</Button>
|
72 |
</DockPanel>
|
73 |
</StackPanel>
|
74 |
|
75 |
</StackPanel>
|
76 |
|
77 |
</Grid>
|
78 |
</UserControl>
|