22 lines
833 B
XML
22 lines
833 B
XML
<Application x:Class="KanSan.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
|
|
xmlns:local="clr-namespace:KanSan"
|
|
StartupUri="MainWindow.xaml">
|
|
<Application.Resources>
|
|
|
|
|
|
<Style TargetType="{x:Type UserControl}">
|
|
<Setter Property="FontFamily" Value="Comic Sans MS"/>
|
|
<Setter Property="FontSize" Value="20" />
|
|
</Style>
|
|
|
|
<Style TargetType="{x:Type Window}">
|
|
<Setter Property="FontFamily" Value="Comic Sans MS"/>
|
|
<Setter Property="FontSize" Value="20" />
|
|
</Style>
|
|
|
|
</Application.Resources>
|
|
</Application>
|