-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.xaml
More file actions
23 lines (23 loc) · 1.01 KB
/
App.xaml
File metadata and controls
23 lines (23 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Application x:Class="GraTechCommander.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:GraTechCommander"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<!-- Global Font -->
<Style TargetType="Window">
<Setter Property="FontFamily" Value="Segoe UI, Tajawal, Arial"/>
</Style>
<Style TargetType="TextBlock">
<Setter Property="FontFamily" Value="Segoe UI, Tajawal, Arial"/>
</Style>
<Style TargetType="TextBox">
<Setter Property="FontFamily" Value="Segoe UI, Tajawal, Arial"/>
</Style>
<Style TargetType="Button">
<Setter Property="FontFamily" Value="Segoe UI, Tajawal, Arial"/>
</Style>
</ResourceDictionary>
</Application.Resources>
</Application>