markus / KCOM / Controls / addToFavoriteWindow_Internal.xaml @ 90a0bfa9
이력 | 보기 | 이력해설 | 다운로드 (3.43 KB)
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"> |
10 |
<Window.Resources>
|
11 |
<SolidColorBrush x:Key="baseColor" Color="#3597C8" /> |
12 |
</Window.Resources>
|
13 |
<Grid x:Name="LayoutRoot" Margin="2"> |
14 |
<Grid.RowDefinitions>
|
15 |
<RowDefinition /> |
16 |
<RowDefinition Height="Auto" /> |
17 |
</Grid.RowDefinitions>
|
18 |
|
19 |
<Border Margin="5"> |
20 |
<Grid>
|
21 |
<Grid.ColumnDefinitions>
|
22 |
<ColumnDefinition Width="Auto" /> |
23 |
<ColumnDefinition Width="*" /> |
24 |
</Grid.ColumnDefinitions>
|
25 |
<Grid.RowDefinitions>
|
26 |
<RowDefinition Height="30" /> |
27 |
<RowDefinition Height="*" /> |
28 |
</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" /> |
42 |
|
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" /> |
51 |
|
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" /> |
61 |
</Grid>
|
62 |
</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" /> |
74 |
</Grid>
|
75 |
</Window>
|