프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / KCOM / Controls / SymbolPrompt.xaml @ dea3d68a

이력 | 보기 | 이력해설 | 다운로드 (2.32 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" Width="350">
28
                <Label>Name :</Label>
29
                <TextBox Margin="5" x:Name="symbolName" />
30
            </DockPanel>
31
            <DockPanel Grid.Row="1" Margin="0,0,0,0" HorizontalAlignment="Left" >
32
                <RadioButton Content="PNG" Name="pngRadioBox" IsChecked="True" Margin="5"/>
33
                <RadioButton Content="SVG" Name="svgRadioBox" 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
                <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
            </StackPanel>
43

    
44
        </StackPanel>
45
       
46
    </Grid>
47
</UserControl>
클립보드 이미지 추가 (최대 크기: 500 MB)