|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <Window |
|
3 x:Class="winui.MainWindow" |
|
4 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
5 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
6 xmlns:local="using:winui" |
|
7 xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|
8 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
9 mc:Ignorable="d"> |
|
10 |
|
11 <Window.SystemBackdrop> |
|
12 <MicaBackdrop /> |
|
13 </Window.SystemBackdrop> |
|
14 |
|
15 <Grid RowDefinitions="Auto, Auto" ColumnDefinitions="*" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> |
|
16 <StackPanel x:Name="AppTitleBar" Orientation="Horizontal" Grid.Column="0" Grid.Row="0" Padding="10,5,5,10"> |
|
17 <TextBlock x:Name="AppTitleTextBlock" Text="Window Title" CanDrag="True"></TextBlock> |
|
18 </StackPanel> |
|
19 </Grid> |
|
20 </Window> |