You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
759 B
21 lines
759 B
1 week ago
|
<Application xmlns="https://github.com/avaloniaui"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
x:Class="Bodk.Ava.UI.App"
|
||
|
xmlns:local="using:Bodk.Ava.UI"
|
||
|
RequestedThemeVariant="Default">
|
||
|
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
||
|
|
||
|
<Application.DataTemplates>
|
||
|
<local:ViewLocator/>
|
||
|
</Application.DataTemplates>
|
||
|
|
||
|
<Application.Styles>
|
||
|
<FluentTheme />
|
||
|
<Style Selector="TextBlock">
|
||
|
<Setter Property="FontFamily" Value="PingFangSC, PingFang SC"/>
|
||
|
</Style>
|
||
|
<Style Selector="TextBox">
|
||
|
<Setter Property="FontFamily" Value="PingFangSC, PingFang SC"/>
|
||
|
</Style>
|
||
|
</Application.Styles>
|
||
|
</Application>
|