markus / KCOM / Controls / addToFavoriteWindow_Internal.xaml @ 6a19b48d
이력 | 보기 | 이력해설 | 다운로드 (3.13 KB)
1 | 6a19b48d | taeseongkim | <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"> |
||
13 | fb80055c | KangIngu | <Window.Resources>
|
14 | <SolidColorBrush x:Key="baseColor" Color="#3597C8" /> |
||
15 | </Window.Resources>
|
||
16 | <Grid x:Name="LayoutRoot" Margin="2"> |
||
17 | <Grid.RowDefinitions>
|
||
18 | <RowDefinition /> |
||
19 | <RowDefinition Height="Auto" /> |
||
20 | </Grid.RowDefinitions>
|
||
21 | |||
22 | <Border Margin="5"> |
||
23 | <Grid>
|
||
24 | <Grid.ColumnDefinitions>
|
||
25 | <ColumnDefinition Width="Auto" /> |
||
26 | <ColumnDefinition Width="*" /> |
||
27 | </Grid.ColumnDefinitions>
|
||
28 | <Grid.RowDefinitions>
|
||
29 | <RowDefinition Height="30" /> |
||
30 | <RowDefinition Height="*" /> |
||
31 | </Grid.RowDefinitions>
|
||
32 | 6a19b48d | taeseongkim | <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" /> |
||
48 | fb80055c | KangIngu | |
49 | 6a19b48d | taeseongkim | <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" /> |
||
58 | fb80055c | KangIngu | |
59 | 6a19b48d | taeseongkim | <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" /> |
||
71 | fb80055c | KangIngu | </Grid>
|
72 | </Border>
|
||
73 | 6a19b48d | taeseongkim | <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" /> |
||
86 | fb80055c | KangIngu | </Grid>
|
87 | </Window> |