Mercurial > silverbladetech
comparison Chronosv2/source/Views/About.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.Modules.Navigation; | |
2 using Chronos.Presentation.Core.ViewModel; | |
3 using Chronos.Presentation.Windows.Controls; | |
4 using Chronos.ViewModel; | |
5 using nRoute.Components.Composition; | |
6 using nRoute.Navigation.Mapping; | |
7 using nRoute.ViewModels; | |
8 | |
9 namespace Chronos.Views | |
10 { | |
11 /// <summary> | |
12 /// Interaction logic for About.xaml | |
13 /// </summary> | |
14 [MapNavigationContent(NavigationRoutes.About)] | |
15 [DefineViewViewModel(typeof(About), typeof(AboutViewModel))] | |
16 public partial class About : WindowElement | |
17 { | |
18 [ResolveConstructor] | |
19 public About([ResolveViewModel(typeof(About))]INavigationViewModel viewModel) | |
20 { | |
21 InitializeComponent(); | |
22 | |
23 this.DataContext = viewModel; | |
24 } | |
25 } | |
26 } |