Files
SzmediTools/MvdLiteSnoop/App.xaml

18 lines
878 B
Plaintext
Raw Normal View History

2025-09-16 16:06:41 +08:00
<Application
x:Class="MvdLiteSnoop.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
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>