mirror of
https://github.com/XFox111/GUTSchedule.git
synced 2026-04-22 06:58:01 +03:00
22 lines
792 B
XML
22 lines
792 B
XML
<Page
|
|
x:Class="GUTSchedule.UWP.AboutPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:GUTSchedule.UWP"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d"
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
<Page.TopAppBar>
|
|
<CommandBar ClosedDisplayMode="Compact" Background="{StaticResource SystemAccentColor}" RequestedTheme="Dark">
|
|
<CommandBar.Content>
|
|
<TextBlock Text="About application" Style="{StaticResource TitleTextBlockStyle}" Margin="10,6"/>
|
|
</CommandBar.Content>
|
|
</CommandBar>
|
|
</Page.TopAppBar>
|
|
|
|
<Grid>
|
|
|
|
</Grid>
|
|
</Page> |