Files
WinUI.Template/MainWindow.xaml
2026-02-13 00:13:27 +08:00

27 lines
955 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<winex:WindowEx
x:Class="MyApp.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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:winex="using:WinUIEx"
Title="MainWindow"
mc:Ignorable="d">
<Window.SystemBackdrop>
<MicaBackdrop />
</Window.SystemBackdrop>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<TitleBar x:Name="AppTitleBar" Title="{x:Bind Title}">
<TitleBar.IconSource>
<ImageIconSource ImageSource="/Assets/Logo/app_64.png" />
</TitleBar.IconSource>
</TitleBar>
</Grid>
</winex:WindowEx>