comparison Chronosv2/source/Presentation/Widgets/Navigator/NavigatorWidgetView.xaml.cs @ 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
comparison
equal deleted inserted replaced
9:904a9faadf8b 10:443821e55f06
1 using Chronos.Presentation.Windows.Controls;
2
3 namespace Chronos.Presentation.Widgets
4 {
5 /// <summary>
6 /// Navigator Widget View
7 /// </summary>
8 public partial class NavigatorWidgetView
9 : WidgetElement
10 {
11 /// <summary>
12 /// Initializes a new instance of the <see cref="NavigatorWidgetView"/> class.
13 /// </summary>
14 public NavigatorWidgetView()
15 {
16 InitializeComponent();
17
18 this.DataContext = new NavigatorWidgetViewModel();
19 }
20 }
21 }