comparison Chronosv2/source/WidgetLibrary/WidgetLibraryView.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.WidgetLibrary
4 {
5 /// <summary>
6 /// Widget Library Widget View
7 /// </summary>
8 public partial class WidgetLibraryView
9 : WidgetElement
10 {
11 #region · Constructors ·
12
13 /// <summary>
14 /// Initializes a new instance of the <see cref="WidgetLibraryView"/> class.
15 /// </summary>
16 public WidgetLibraryView()
17 {
18 InitializeComponent();
19
20 this.DataContext = new WidgetLibraryViewModel();
21 }
22
23 #endregion
24 }
25 }