view 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 source

<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>