mirror of
https://github.com/XFox111/GUTSchedule.git
synced 2026-04-22 06:58:01 +03:00
3962591430
Updated validation.yml
25 lines
893 B
XML
25 lines
893 B
XML
<Application
|
|
x:Class="GUTSchedule.UWP.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
RequestedTheme="Light">
|
|
|
|
<Application.Resources>
|
|
<Style TargetType="Button">
|
|
<Setter Property="HorizontalAlignment" Value="Stretch"/>
|
|
<Setter Property="Margin" Value="2"/>
|
|
</Style>
|
|
<Style TargetType="ComboBox">
|
|
<Setter Property="HorizontalAlignment" Value="Stretch"/>
|
|
</Style>
|
|
<Style TargetType="TextBlock">
|
|
<Setter Property="TextWrapping" Value="WrapWholeWords"/>
|
|
</Style>
|
|
<Style TargetType="CalendarDatePicker">
|
|
<Setter Property="HorizontalAlignment" Value="Stretch"/>
|
|
<Setter Property="Margin" Value="2"/>
|
|
</Style>
|
|
<Color x:Key="SystemAccentColor">#ff8000</Color>
|
|
<SolidColorBrush x:Key="SystemAccentColorBrush" Color="#ff8000" />
|
|
</Application.Resources>
|
|
</Application> |