Files
SzmediTools/WPFUI.Test/App.xaml
2025-12-23 21:37:02 +08:00

22 lines
979 B
XML

<Application
x:Class="WPFUI.Test.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WPFUI.Test"
xmlns:md="http://materialdesigninxaml.net/winfx/xaml/themes"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<md:BundledTheme
BaseTheme="Light"
PrimaryColor="DeepPurple"
SecondaryColor="Lime" />
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesign3.Defaults.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
<!--<SolidColorBrush x:Key="NormalBrush" Color="#1F9944" />
<SolidColorBrush x:Key="Brush" Color="#1F9944" />-->
</Application.Resources>
</Application>