Files
SzmediTools/WPFUI.Test/App.xaml

19 lines
919 B
Plaintext
Raw Normal View History

2025-09-16 16:06:41 +08:00
<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>