Files
ShrlAlgoToolkit/AntdWpfDemo/App.xaml

55 lines
2.6 KiB
Plaintext
Raw Normal View History

2025-07-11 09:20:23 +08:00
<Application x:Class="AntdDemo.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"
xmlns:local="clr-namespace:AntdWpfDemo"
>
<!--StartupUri="Views/ShellView.xaml"-->
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary>
<local:Bootstrapper x:Key="Bootstrapper" />
</ResourceDictionary>
<ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Generic.xaml" />
<!--<ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />
<ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Controls.xaml" />
<ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/AntIcons.xaml" />-->
</ResourceDictionary.MergedDictionaries>
<Style x:Key="Ant.H1" TargetType="Control">
<Setter Property="FontSize" Value="30" />
<Setter Property="FontWeight" Value="Medium" />
<Setter Property="Foreground" Value="#0D1A26" />
<Setter Property="Margin" Value="0 8 0 20" />
</Style>
<Style x:Key="Ant.H2"
BasedOn="{StaticResource Ant.H1}"
TargetType="Control">
<Setter Property="FontSize" Value="24" />
<Setter Property="Margin" Value="0 14" />
</Style>
<Style x:Key="Ant.H4"
BasedOn="{StaticResource Ant.H1}"
TargetType="Control">
<Setter Property="FontSize" Value="14" />
<Setter Property="Margin" Value="0 0 0 16" />
</Style>
<Style x:Key="Ant.P" TargetType="TextBlock">
<Setter Property="FontFamily" Value="Chinese Quote" />
<Setter Property="FontSize" Value="14" />
<Setter Property="Foreground" Value="#314659" />
<Setter Property="LineHeight" Value="28" />
<Setter Property="Margin" Value="0 14" />
<Setter Property="TextWrapping" Value="Wrap" />
</Style>
<Style TargetType="antd:CodeBox">
<Setter Property="Margin" Value="0 0 0 16" />
</Style>
</ResourceDictionary>
</Application.Resources>
</Application>