mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-23 00:17:58 +08:00
16 lines
514 B
Plaintext
16 lines
514 B
Plaintext
|
<Window
|
||
|
x:Class="Microsoft.PowerToys.Settings.UI.MainWindow"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:local="using:Microsoft.PowerToys.Settings.UI.Views"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
mc:Ignorable="d"
|
||
|
Closed="Window_Closed"
|
||
|
>
|
||
|
|
||
|
<Grid>
|
||
|
<local:ShellPage/>
|
||
|
</Grid>
|
||
|
</Window>
|