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>
|
2024-09-24 22:39:43 +08:00
|
|
|
|
|
|
|
|
<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-09-24 22:39:43 +08:00
|
|
|
|
2024-08-05 10:11:58 +08:00
|
|
|
</Application.Resources>
|
2024-09-24 22:39:43 +08:00
|
|
|
|
2024-08-05 10:11:58 +08:00
|
|
|
</Application>
|