1234567891011121314151617181920212223242526272829303132333435 |
- <prism:PrismApplication
- x:Class="ProjectManagementSystemView.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:Converter="clr-namespace:ProjectManagementSystemView.Infrastructure.Converters"
- xmlns:ViewModel="clr-namespace:ProjectManagementSystemView.ViewModels"
- xmlns:help="clr-namespace:ProjectManagementSystemView.Infrastructure.Helpers"
- xmlns:local="clr-namespace:ProjectManagementSystemView"
- xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
- xmlns:prism="http://prismlibrary.com/">
- <Application.Resources>
- <ResourceDictionary>
- <ResourceDictionary.MergedDictionaries>
- <materialDesign:BundledTheme
- BaseTheme="Dark"
- PrimaryColor="LightGreen"
- SecondaryColor="Lime" />
- <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/SkinDefault.xaml" />
- <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/Theme.xaml" />
- <ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
- </ResourceDictionary.MergedDictionaries>
- <Converter:LocationBorderColorConverter x:Key="LocationBorderColorConverter" />
- <Converter:LocationBorderThicknessConvert x:Key="LocationBorderThicknessConvert" />
- <Converter:LocationStatusColorConverter x:Key="StatusColorConverter" />
- <Converter:LocationStatusTextConverter x:Key="StatusTextConverter" />
- <Converter:LocationCodeCanCallConverter x:Key="LocationCodeCanCallConverter" />
- <Converter:LocationCodeCanTransportConverter x:Key="LocationCodeCanTransportConverter" />
- <Converter:TaskButtonVisibilityConverter x:Key="TaskButtonVisibilityConverter" />
- <help:ResourceProvider x:Key="R" />
- </ResourceDictionary>
- </Application.Resources>
- </prism:PrismApplication>
|