38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Window
|
|
x:Class="winui_learning.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:winui_learning"
|
|
xmlns:views="using:winui_learning.Views"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d"
|
|
Title="WinUI Notes">
|
|
|
|
<Window.SystemBackdrop>
|
|
<MicaBackdrop Kind="Base"/>
|
|
</Window.SystemBackdrop>
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
<!-- Title bar -->
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
|
|
<!-- Kontent aplikace -->
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TitleBar x:Name="AppTitleBar"
|
|
Title="WinUI Notes">
|
|
<TitleBar.IconSource>
|
|
<FontIconSource Glyph=""/>
|
|
</TitleBar.IconSource>
|
|
</TitleBar>
|
|
|
|
<Frame x:Name="rootFrame" Grid.Row="1"
|
|
SourcePageType="views:NotePage"/>
|
|
</Grid>
|
|
</Window>
|