2023-12-30 15:50:37 +00:00
|
|
|
<Application
|
|
|
|
x:Class="VPet_Simulator.Windows.App"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:local="clr-namespace:VPet_Simulator.Windows"
|
|
|
|
xmlns:pu="https://opensource.panuon.com/wpf-ui"
|
|
|
|
StartupUri="MainWindow.xaml">
|
|
|
|
<Application.Resources>
|
|
|
|
<ResourceDictionary>
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
|
|
|
<ResourceDictionary Source="/VPet-Simulator.Windows.Interface;component/ResourceStyle.xaml" />
|
2023-06-05 08:42:20 +00:00
|
|
|
<ResourceDictionary>
|
2023-12-30 15:50:37 +00:00
|
|
|
<FontFamily x:Key="MainFont">
|
|
|
|
/VPet-Simulator.Windows;component/Res/Font/#OPPOSans R
|
|
|
|
</FontFamily>
|
|
|
|
<FontFamily x:Key="RemixIcon">
|
|
|
|
/VPet-Simulator.Windows;component/Res/#remixicon
|
|
|
|
</FontFamily>
|
2023-06-05 08:42:20 +00:00
|
|
|
</ResourceDictionary>
|
2023-12-30 15:50:37 +00:00
|
|
|
<ResourceDictionary>
|
|
|
|
<pu:GlobalSettings
|
|
|
|
x:Key="globalSettings"
|
|
|
|
FontFamily="{StaticResource MainFont}"
|
|
|
|
FontSize="14"
|
|
|
|
IconFontFamily="/VPet-Simulator.Windows;component/Res/#remixicon"
|
|
|
|
IconFontSize="16" />
|
|
|
|
</ResourceDictionary>
|
|
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
</ResourceDictionary>
|
|
|
|
</Application.Resources>
|
2022-12-13 07:10:18 +00:00
|
|
|
</Application>
|