2020-03-12 01:43:32 +08:00
|
|
|
<Window x:Class="Microsoft.PowerToys.Settings.UI.Runner.MainWindow"
|
2020-03-07 09:46:51 +08:00
|
|
|
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"
|
2020-03-12 01:43:32 +08:00
|
|
|
xmlns:local="clr-namespace:Microsoft.PowerToys.Settings.UI.Runner"
|
2020-03-07 09:46:51 +08:00
|
|
|
xmlns:Controls="clr-namespace:Microsoft.Toolkit.Wpf.UI.Controls;assembly=Microsoft.Toolkit.Wpf.UI.Controls"
|
2020-03-10 14:55:08 +08:00
|
|
|
xmlns:xaml="clr-namespace:Microsoft.Toolkit.Wpf.UI.XamlHost;assembly=Microsoft.Toolkit.Wpf.UI.XamlHost"
|
2020-03-07 09:46:51 +08:00
|
|
|
mc:Ignorable="d"
|
2020-07-28 00:57:28 +08:00
|
|
|
Title="PowerToys Settings" Height="800" Width="1100" Closing="MainWindow_Closing">
|
2020-03-30 17:02:25 +08:00
|
|
|
<Grid>
|
2020-03-12 01:43:32 +08:00
|
|
|
<xaml:WindowsXamlHost InitialTypeName="Microsoft.PowerToys.Settings.UI.Views.ShellPage" ChildChanged="WindowsXamlHost_ChildChanged" />
|
2020-03-07 09:46:51 +08:00
|
|
|
</Grid>
|
|
|
|
</Window>
|
|
|
|
|