1
0
mirror of https://github.com/XFox111/GUTSchedule.git synced 2026-04-22 06:58:01 +03:00

UWP folder cleanup and improvements

This commit is contained in:
Michael Gordeev
2020-02-17 13:42:56 +03:00
parent 867e9b5393
commit 4363d25ff3
21 changed files with 447 additions and 29 deletions
+23
View File
@@ -0,0 +1,23 @@
<Application
x:Class="GUTSchedule.UWP.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<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>
</Application.Resources>
</Application>