mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
25 lines
1.0 KiB
XML
25 lines
1.0 KiB
XML
<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"
|
|
xmlns:view="clr-namespace:Serein.Workbench.Views"
|
|
StartupUri="Views/FlowWorkbenchView.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>
|
|
</ResourceDictionary>
|
|
|
|
</Application.Resources>
|
|
|
|
</Application>
|