프로젝트

일반

사용자정보

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

markus / KCOM / Controls / SymbolPrompt.xaml @ a1cc6e1f

이력 | 보기 | 이력해설 | 다운로드 (2.85 KB)

1 22b925fe taeseongkim
<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 684ef11c ljiyeon
    <Grid Background="#FFEEEEF2">
12
        <Grid.ColumnDefinitions>
13 22b925fe taeseongkim
            <ColumnDefinition Width="50" />
14
            <ColumnDefinition Width="350" />
15 684ef11c ljiyeon
        </Grid.ColumnDefinitions>
16 22b925fe taeseongkim
        <!--
17 684ef11c ljiyeon
        <Grid.RowDefinitions>
18
            <RowDefinition Height="35"/>
19
            <RowDefinition Height="25"/>
20
            <RowDefinition Height="1"/>
21
            <RowDefinition/>
22 22b925fe taeseongkim
        </Grid.RowDefinitions>-->
23 684ef11c ljiyeon
        <StackPanel Grid.Column="0" Margin="0,10,0,0">
24 22b925fe taeseongkim
            <Image Height="40" Source="/KCOM;component/Resources/Images/MenuImage_New/selectInk.png" />
25 684ef11c ljiyeon
        </StackPanel>
26
        <StackPanel Grid.Column="1">
27 22b925fe taeseongkim
            <DockPanel
28
                Grid.Row="0"
29
                Width="350"
30
                Margin="0,10,0,0"
31
                HorizontalAlignment="Left">
32 684ef11c ljiyeon
                <Label>Name :</Label>
33 22b925fe taeseongkim
                <TextBox x:Name="symbolName" Margin="5" />
34 684ef11c ljiyeon
            </DockPanel>
35 22b925fe taeseongkim
            <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 684ef11c ljiyeon
            </DockPanel>
51 22b925fe taeseongkim
            <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 41e3c8ac swate0609
                <DockPanel>
58 22b925fe taeseongkim
                    <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 41e3c8ac swate0609
                </DockPanel>
73 684ef11c ljiyeon
            </StackPanel>
74
75
        </StackPanel>
76 22b925fe taeseongkim
77 684ef11c ljiyeon
    </Grid>
78
</UserControl>
클립보드 이미지 추가 (최대 크기: 500 MB)