markus / KCOM / Controls / CalendarControl.xaml @ 40a810fc
이력 | 보기 | 이력해설 | 다운로드 (1.93 KB)
1 |
<UserControl x:Class="KCOM.Controls.CalendarControl" |
---|---|
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" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
8 |
d:DesignHeight="300" d:DesignWidth="300"> |
9 |
<Grid x:Name="LayoutRoot" Background="White"> |
10 |
<!--<Grid.ColumnDefinitions>
|
11 |
<ColumnDefinition Width="6*"/>
|
12 |
<ColumnDefinition Width="4*"/>
|
13 |
</Grid.ColumnDefinitions>-->
|
14 |
<Grid.RowDefinitions>
|
15 |
<RowDefinition Height="Auto"/> |
16 |
<RowDefinition Height="*"/> |
17 |
</Grid.RowDefinitions>
|
18 |
<telerik:RadCalendar telerik:StyleManager.Theme="Windows8" Margin="3" Grid.Row="1" x:Name="changeDateCal"/> |
19 |
<Border Grid.Row="0" Margin="5" HorizontalAlignment="Right" VerticalAlignment="Center"> |
20 |
<Grid>
|
21 |
<Grid.ColumnDefinitions>
|
22 |
<ColumnDefinition Width="Auto"/> |
23 |
<ColumnDefinition Width="*"/> |
24 |
<ColumnDefinition Width="*"/> |
25 |
<ColumnDefinition Width="*"/> |
26 |
</Grid.ColumnDefinitions>
|
27 |
<TextBlock VerticalAlignment="Center" Text="Current" FontWeight="Bold"/> |
28 |
<TextBlock Text="" Grid.Row="0" Grid.Column="1" Margin="3,0,0,0" VerticalAlignment="Center" x:Name="tlCurrentDate"/> |
29 |
|
30 |
<TextBlock VerticalAlignment="Center" Text="Today" FontWeight="Bold" Grid.Column="2" Margin="10,0,0,0"/> |
31 |
<TextBlock Text="" Grid.Row="0" Grid.Column="3" Margin="3,0,0,0" VerticalAlignment="Center" x:Name="tlToday"/> |
32 |
</Grid>
|
33 |
</Border>
|
34 |
</Grid>
|
35 |
</UserControl>
|