This commit is contained in:
Steven Hobs
2026-02-12 23:35:48 +08:00
commit b03db7ac51
15 changed files with 1007 additions and 0 deletions

18
MainWindow.xaml Normal file
View File

@@ -0,0 +1,18 @@
<?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:local="using:MyApp"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:winex="using:WinUIEx"
mc:Ignorable="d">
<Window.SystemBackdrop>
<MicaBackdrop />
</Window.SystemBackdrop>
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock>Pure WinUI3</TextBlock>
<TextBlock>None</TextBlock>
</StackPanel>
</winex:WindowEx>