Files
serein-flow/WorkBench/App.xaml

24 lines
970 B
Plaintext
Raw Normal View History

2024-08-05 10:11:58 +08:00
<Application x:Class="Serein.WorkBench.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Serein.WorkBench"
StartupUri="MainWindow.xaml"
Startup="Application_Startup">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!--<ResourceDictionary Source="/Themes/ExplicitDataControl.xaml" />-->
<ResourceDictionary Source="/Themes/MethodDetailsControl.xaml" />
</ResourceDictionary.MergedDictionaries>
<Style TargetType="{x:Type TextBlock }">
<!--<Setter Property="FontFamily" Value="Comic Sans MS"/>-->
<Setter Property="Foreground" Value="#071042"/>
</Style>
2024-08-05 10:11:58 +08:00
</ResourceDictionary>
2024-08-05 10:11:58 +08:00
</Application.Resources>
2024-08-05 10:11:58 +08:00
</Application>