diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2017-11-26 17:23:38 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2017-11-26 17:23:38 +0200 |
| commit | 262c1efc9d53b8b70fe677dc7d2d173896ffcee8 (patch) | |
| tree | e404dc914bee89101f50963ff018225c897244fd /Software/Visual_Studio/Utilities/Tango.Synchronization.UI/App.xaml | |
| parent | 0a8af16821cfbb52fe02881921695d378f6578d7 (diff) | |
| download | Tango-262c1efc9d53b8b70fe677dc7d2d173896ffcee8.tar.gz Tango-262c1efc9d53b8b70fe677dc7d2d173896ffcee8.zip | |
Implemented Tango SQLite DB Synchronizer.
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.Synchronization.UI/App.xaml')
| -rw-r--r-- | Software/Visual_Studio/Utilities/Tango.Synchronization.UI/App.xaml | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.Synchronization.UI/App.xaml b/Software/Visual_Studio/Utilities/Tango.Synchronization.UI/App.xaml index 19bd64b04..c4d813ee4 100644 --- a/Software/Visual_Studio/Utilities/Tango.Synchronization.UI/App.xaml +++ b/Software/Visual_Studio/Utilities/Tango.Synchronization.UI/App.xaml @@ -1,9 +1,26 @@ <Application x:Class="Tango.Synchronization.UI.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:vm="clr-namespace:Tango.Synchronization.UI.ViewModels" xmlns:local="clr-namespace:Tango.Synchronization.UI" StartupUri="MainWindow.xaml"> <Application.Resources> - + <ResourceDictionary> + <ResourceDictionary.MergedDictionaries> + <!-- MahApps.Metro resource dictionaries. Make sure that all file names are Case Sensitive! --> + <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.xaml" /> + <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml" /> + <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Colors.xaml" /> + <!-- Accent and AppTheme setting --> + <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Accents/Steel.xaml" /> + <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Accents/BaseDark.xaml" /> + <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/FlatButton.xaml" /> + + <!--View Models--> + <ResourceDictionary> + <vm:MainViewVM x:Key="MainViewVM" /> + </ResourceDictionary> + </ResourceDictionary.MergedDictionaries> + </ResourceDictionary> </Application.Resources> </Application> |
