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">
|
|
|
|
|
|
2025-10-03 21:04:23 +02:00
|
|
|
<!-- SystemBackdrop will be set by NewThemeService -->
|
2025-09-29 11:16:14 +02:00
|
|
|
|
2025-10-18 22:16:28 +02:00
|
|
|
<Grid>
|
2025-09-29 11:16:14 +02:00
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
2025-10-18 22:16:28 +02:00
|
|
|
<Grid Grid.RowSpan="2" Background="{ThemeResource WinoApplicationBackgroundColor}" />
|
2025-09-29 19:09:48 +02:00
|
|
|
<TitleBar
|
|
|
|
|
x:Name="ShellTitleBar"
|
|
|
|
|
Title="{x:Bind StatePersistanceService.CoreWindowTitle, Mode=OneWay}"
|
2025-10-18 22:16:28 +02:00
|
|
|
MinHeight="48"
|
2025-10-03 22:12:27 +02:00
|
|
|
HorizontalContentAlignment="Stretch"
|
|
|
|
|
VerticalContentAlignment="Stretch"
|
2025-09-29 19:09:48 +02:00
|
|
|
BackRequested="BackButtonClicked"
|
2025-10-18 11:45:10 +02:00
|
|
|
Background="Transparent"
|
2025-09-29 19:09:48 +02:00
|
|
|
IsBackButtonVisible="{x:Bind StatePersistanceService.IsBackButtonVisible, Mode=OneWay}"
|
|
|
|
|
IsPaneToggleButtonVisible="True"
|
|
|
|
|
PaneToggleRequested="PaneButtonClicked" />
|
|
|
|
|
<Frame
|
|
|
|
|
x:Name="MainShellFrame"
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
Navigated="MainFrameNavigated" />
|
2025-09-29 11:16:14 +02:00
|
|
|
</Grid>
|
|
|
|
|
</winuiex:WindowEx>
|