Mercurial > silverbladetech
comparison Chronosv2/source/App.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 |
comparison
equal
deleted
inserted
replaced
9:904a9faadf8b | 10:443821e55f06 |
---|---|
1 <nRoute:Application x:Class="Chronos.App" | |
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
4 xmlns:nRoute="http://nRoute/schemas/2010/xaml" | |
5 xmlns:chronos="http://chronos/schemas/2010/xaml" | |
6 StartupUri="Shell.xaml" | |
7 ShutdownMode="OnMainWindowClose"> | |
8 | |
9 <nRoute:Application.Resources> | |
10 <ResourceDictionary> | |
11 <ResourceDictionary.MergedDictionaries> | |
12 <!-- Core Styles --> | |
13 <ResourceDictionary Source="Themes/Metro/CoreStyles.xaml" /> | |
14 <!-- Control Styles --> | |
15 <ResourceDictionary Source="Themes/Metro/ControlStyles.xaml" /> | |
16 <!-- Shortcut --> | |
17 <ResourceDictionary Source="Themes/Metro/ShortcutStyles.xaml"/> | |
18 <!-- Core Widget styles --> | |
19 <ResourceDictionary Source="Themes/Metro/WidgetStyles.xaml" /> | |
20 <!-- Window Styles --> | |
21 <ResourceDictionary Source="Themes/Metro/WindowStyles.xaml"/> | |
22 <!-- Shell Window --> | |
23 <ResourceDictionary Source="Themes/Metro/ShellStyles.xaml"/> | |
24 </ResourceDictionary.MergedDictionaries> | |
25 </ResourceDictionary> | |
26 </nRoute:Application.Resources> | |
27 | |
28 <nRoute:Application.ApplicationLifetimeObjects> | |
29 <nRoute:nRouteApplicationService> | |
30 <nRoute:nRouteApplicationService.SiteMapProvider> | |
31 <nRoute:XamlSiteMapProvider> | |
32 <nRoute:SiteMap> | |
33 <nRoute:SiteMap.Areas> | |
34 <nRoute:SiteArea Key="Configuracion" RemoteUrl="Chronos.Modules.Sample.dll" InitializeOnLoad="false" /> | |
35 </nRoute:SiteMap.Areas> | |
36 | |
37 <nRoute:SiteMap.RootNode> | |
38 | |
39 <nRoute:NavigationNode Title="Inicio"> | |
40 | |
41 <nRoute:NodesCollection> | |
42 | |
43 <nRoute:NavigationNode Title="Configuración general"> | |
44 <nRoute:NodesCollection> | |
45 | |
46 <chronos:CommandSiteMapNode Title="Ficha de la Empresa" SiteArea="Configuracion" Url="Configuracion/Empresas" /> | |
47 <chronos:CommandSiteMapNode Title="Régimenes y tipos de I.V.A." SiteArea="Configuracion" Url="Configuracion/RegimenesIva" /> | |
48 <chronos:CommandSiteMapNode Title="Formas de Cobro" SiteArea="Configuracion" Url="Configuracion/FormasCobro" /> | |
49 <chronos:CommandSiteMapNode Title="Formas de Pago" SiteArea="Configuracion" Url="Configuracion/FormasPago" /> | |
50 <chronos:CommandSiteMapNode Title="Divisas" SiteArea="Configuracion" Url="Configuracion/Divisas" /> | |
51 <chronos:CommandSiteMapNode Title="Códigos CNAE" SiteArea="Configuracion" Url="Configuracion/CodigosCNAE" /> | |
52 <chronos:CommandSiteMapNode Title="Entidades bancarias" SiteArea="Configuracion" Url="Configuracion/EntidadesBancarias" /> | |
53 <chronos:CommandSiteMapNode Title="Tipos de documentos" SiteArea="Configuracion" Url="Configuracion/TiposDocumento" /> | |
54 <chronos:CommandSiteMapNode Title="Tipos de retenciones" SiteArea="Configuracion" Url="Configuracion/TiposRetencion" /> | |
55 <chronos:CommandSiteMapNode Title="Tipos de via" SiteArea="Configuracion" Url="Configuracion/TiposVia" /> | |
56 | |
57 </nRoute:NodesCollection> | |
58 | |
59 </nRoute:NavigationNode> | |
60 | |
61 </nRoute:NodesCollection> | |
62 | |
63 </nRoute:NavigationNode> | |
64 | |
65 </nRoute:SiteMap.RootNode> | |
66 </nRoute:SiteMap> | |
67 </nRoute:XamlSiteMapProvider> | |
68 </nRoute:nRouteApplicationService.SiteMapProvider> | |
69 </nRoute:nRouteApplicationService> | |
70 </nRoute:Application.ApplicationLifetimeObjects> | |
71 | |
72 </nRoute:Application> |