프로젝트

일반

사용자정보

개정판 6a19b48d

ID6a19b48d4d65f0132542748dacd26fb0b1c9c89a
상위 c1946e9c
하위 d2050059, f5f788c2

김태성이(가) 약 2년 전에 추가함

issue #00000 페이지 이미지 download 로직 수정

Change-Id: I4da03c36b5a135eea80b57b20ada38239afd1082

차이점 보기:

KCOM/Controls/addToFavoriteWindow_Internal.xaml
1
<Window x:Class="KCOM.Controls.addToFavoriteWindow_Internal"                       
2
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6
        xmlns:local="clr-namespace:KCOM.Controls"
7
        mc:Ignorable="d"                       
8
        xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
9
        Title="Add to Favorite" Height="300" Width="400">
1
<Window
2
    x:Class="KCOM.Controls.addToFavoriteWindow_Internal"
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
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
9
    Title="Add to Favorite"
10
    Width="400"
11
    Height="300"
12
    mc:Ignorable="d">
10 13
    <Window.Resources>
11 14
        <SolidColorBrush x:Key="baseColor" Color="#3597C8" />
12 15
    </Window.Resources>
......
26 29
                    <RowDefinition Height="30" />
27 30
                    <RowDefinition Height="*" />
28 31
                </Grid.RowDefinitions>
29
                <TextBlock HorizontalAlignment="Center"
30
                           VerticalAlignment="Center"
31
                           FontSize="10" Margin="5,0,0,0"
32
                           FontWeight="Bold"
33
                           Text="FAVORITE TYPE" />
34
                <telerik:RadComboBox x:Name="cbState"
35
                                     Grid.Column="1"
36
                                     Width="200" Margin="5,0,0,0"
37
                                     HorizontalAlignment="Left"
38
                                     ItemsSource="{Binding Favorites,
39
                                                           Mode=TwoWay}"
40
                                     SelectedIndex="0"
41
                                     telerik:StyleManager.Theme="Windows8" />
32
                <TextBlock
33
                    Margin="5,0,0,0"
34
                    HorizontalAlignment="Center"
35
                    VerticalAlignment="Center"
36
                    FontSize="10"
37
                    FontWeight="Bold"
38
                    Text="FAVORITE TYPE" />
39
                <telerik:RadComboBox
40
                    x:Name="cbState"
41
                    Grid.Column="1"
42
                    Width="200"
43
                    Margin="5,0,0,0"
44
                    HorizontalAlignment="Left"
45
                    telerik:StyleManager.Theme="Windows8"
46
                    ItemsSource="{Binding Favorites, Mode=TwoWay}"
47
                    SelectedIndex="0" />
42 48

  
43
                <TextBlock Grid.Row="2"
44
                           Grid.ColumnSpan="2"
45
                           Margin="5"
46
                           HorizontalAlignment="Left"
47
                           VerticalAlignment="Top"
48
                           FontSize="10"
49
                           FontWeight="SemiBold"
50
                           Text="DESCRIPTION" />
49
                <TextBlock
50
                    Grid.Row="2"
51
                    Grid.ColumnSpan="2"
52
                    Margin="5"
53
                    HorizontalAlignment="Left"
54
                    VerticalAlignment="Top"
55
                    FontSize="10"
56
                    FontWeight="SemiBold"
57
                    Text="DESCRIPTION" />
51 58

  
52
                <TextBox x:Name="tbDescription"
53
                         Grid.Row="1" 
54
                         Grid.ColumnSpan="2"
55
                         Margin="5,30,5,5"
56
                         AcceptsReturn="True"
57
                         Background="#FFF9F9F9"
58
                         BorderThickness="0.8"
59
                         Foreground="#3d3d3d" VerticalContentAlignment="Top"
60
                         TextWrapping="Wrap" BorderBrush="#FFD8D8D8" />
59
                <TextBox
60
                    x:Name="tbDescription"
61
                    Grid.Row="1"
62
                    Grid.ColumnSpan="2"
63
                    Margin="5,30,5,5"
64
                    VerticalContentAlignment="Top"
65
                    AcceptsReturn="True"
66
                    Background="#FFF9F9F9"
67
                    BorderBrush="#FFD8D8D8"
68
                    BorderThickness="0.8"
69
                    Foreground="#3d3d3d"
70
                    TextWrapping="Wrap" />
61 71
            </Grid>
62 72
        </Border>
63
        <telerik:RadButton Grid.Row="1"
64
                           Height="30"
65
                           Margin="10" x:Name="btnOK"
66
                           HorizontalAlignment="Right"
67
                           Background="#3d3d3d"
68
                           Click="OKButton_Click"
69
                           Content="REGISTER"
70
                           FontWeight="Black"
71
                           Foreground="White"
72
                           Padding="30,0,30,0"
73
                           telerik:StyleManager.Theme="Office2016" />
73
        <telerik:RadButton
74
            x:Name="btnOK"
75
            Grid.Row="1"
76
            Height="30"
77
            Margin="10"
78
            Padding="30,0,30,0"
79
            HorizontalAlignment="Right"
80
            telerik:StyleManager.Theme="Office2016"
81
            Background="#3d3d3d"
82
            Click="OKButton_Click"
83
            Content="REGISTER"
84
            FontWeight="Black"
85
            Foreground="White" />
74 86
    </Grid>
75 87
</Window>

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)