16 lines
662 B
XML
16 lines
662 B
XML
<Application x:Class="Wpf_AiSportsMicrospace.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:Wpf_AiSportsMicrospace.Views"
|
|
StartupUri="Views/Main.xaml">
|
|
|
|
<!--StartupUri="Views/JumpRope/GroupJumpRope.xaml">-->
|
|
<Application.Resources>
|
|
<FontFamily x:Key="AppFont">./Resoures/Fonts/myFontFamily</FontFamily>
|
|
<Style TargetType="TextBlock">
|
|
<Setter Property="FontFamily" Value="./Resoures/Fonts/myFontFamily"/>
|
|
</Style>
|
|
</Application.Resources>
|
|
|
|
</Application>
|