view Chronosv2/source/Presentation/Widgets/Navigator/NavigatorWidgetView.xaml.cs @ 18:8049f7c58c2b

Login form 75% there
author stevenh7776 stevenhollidge@hotmail.com
date Wed, 14 Mar 2012 18:06:36 +0700
parents 443821e55f06
children
line wrap: on
line source

using Chronos.Presentation.Windows.Controls;

namespace Chronos.Presentation.Widgets
{
    /// <summary>
    /// Navigator Widget View
    /// </summary>
    public partial class NavigatorWidgetView 
        : WidgetElement
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="NavigatorWidgetView"/> class.
        /// </summary>
        public NavigatorWidgetView()
        {
            InitializeComponent();

            this.DataContext = new NavigatorWidgetViewModel();
        }
    }
}