Files
Wino-Mail/Wino.Mail.WinUI/ShellWindow.xaml
T

38 lines
1.3 KiB
XML
Raw Normal View History

2025-09-29 11:16:14 +02:00
<?xml version="1.0" encoding="utf-8" ?>
<winuiex:WindowEx
x:Class="Wino.Mail.WinUI.ShellWindow"
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:Wino.Mail.WinUI"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:winuiex="using:WinUIEx"
Title="ShellWindow"
mc:Ignorable="d">
<!-- SystemBackdrop will be set by NewThemeService -->
2025-09-29 11:16:14 +02:00
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
2025-09-29 19:09:48 +02:00
<TitleBar
x:Name="ShellTitleBar"
Title="{x:Bind StatePersistanceService.CoreWindowTitle, Mode=OneWay}"
2025-10-06 17:46:00 +02:00
Margin="-3,-3,0,0"
2025-10-03 22:12:27 +02:00
HorizontalContentAlignment="Stretch"
VerticalContentAlignment="Stretch"
2025-09-29 19:09:48 +02:00
BackRequested="BackButtonClicked"
IsBackButtonVisible="{x:Bind StatePersistanceService.IsBackButtonVisible, Mode=OneWay}"
IsPaneToggleButtonVisible="True"
PaneToggleRequested="PaneButtonClicked" />
2025-09-29 11:16:14 +02:00
2025-09-29 19:09:48 +02:00
<Frame
x:Name="MainShellFrame"
Grid.Row="1"
Navigated="MainFrameNavigated" />
2025-09-29 11:16:14 +02:00
</Grid>
</winuiex:WindowEx>