Mercurial > silverbladetech
diff Chronosv2/source/Presentation/Widgets/Calendar/CalendarWidgetView.xaml @ 10:443821e55f06
Initial cleaned up add from Codeplex files
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Tue, 21 Feb 2012 17:25:44 +0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Chronosv2/source/Presentation/Widgets/Calendar/CalendarWidgetView.xaml Tue Feb 21 17:25:44 2012 +0700 @@ -0,0 +1,18 @@ +<chronos:WidgetElement x:Class="Chronos.Presentation.Widgets.CalendarWidgetView" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:PresentationOptions="http://schemas.microsoft.com/winfx/2006/xaml/presentation/options" + xmlns:chronos="http://chronos/schemas/2010/xaml" + Style="{StaticResource DefaultWidgetStyle}" + Title="Calendar"> + + <Grid x:Name="LayoutRoot"> + <Viewbox Stretch="UniformToFill"> + <Calendar x:Name="Calendar" + Background="Transparent" + BorderThickness="0" + SelectionMode="SingleDate" SelectedDate="{Binding SelectedDate}"> + </Calendar> + </Viewbox> + </Grid> +</chronos:WidgetElement>