41 lines
1.5 KiB
XML
41 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<Window
|
|
x:Class="AmiReel_WinUI.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="using:AmiReel_WinUI"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Title="AmiReel"
|
|
mc:Ignorable="d">
|
|
<Window.SystemBackdrop>
|
|
<MicaBackdrop />
|
|
</Window.SystemBackdrop>
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid x:Name="AppTitleBar" Height="44" Background="Transparent">
|
|
<StackPanel Orientation="Horizontal" Spacing="10" VerticalAlignment="Center" Margin="14,0,0,0">
|
|
<Image Source="ms-appx:///Assets/Square44x44Logo.scale-200.png"
|
|
Width="20"
|
|
Height="20"
|
|
Stretch="Uniform" />
|
|
<TextBlock Text="AmiReel"
|
|
FontSize="16"
|
|
VerticalAlignment="Center" />
|
|
</StackPanel>
|
|
</Grid>
|
|
|
|
<!--
|
|
The Frame hosts pages for your application content. Add your UI to
|
|
MainPage.xaml rather than here so you can use Page features such as
|
|
navigation events and the Loaded lifecycle.
|
|
-->
|
|
<Frame x:Name="RootFrame" Grid.Row="1" />
|
|
</Grid>
|
|
</Window>
|