mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 17:56:44 +02:00
* MinWidth/Height and DPI-aware launch dimensions * Making MainWindow DPI aware too * Moving toastwindow to WinUIEx too * Update MainWindow.xaml.cs * Reverting back to the working logic * Localizing settings window title * Xaml formatting * Update SettingsWindow.xaml.cs
19 lines
708 B
XML
19 lines
708 B
XML
<winuiex:WindowEx
|
|
x:Class="Microsoft.CmdPal.UI.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:pages="using:Microsoft.CmdPal.UI.Pages"
|
|
xmlns:viewmodels="using:Microsoft.CmdPal.UI.ViewModels"
|
|
xmlns:winuiex="using:WinUIEx"
|
|
Width="800"
|
|
Height="480"
|
|
MinWidth="320"
|
|
MinHeight="240"
|
|
Activated="MainWindow_Activated"
|
|
Closed="MainWindow_Closed"
|
|
mc:Ignorable="d">
|
|
<pages:ShellPage x:Name="RootShellPage" />
|
|
</winuiex:WindowEx>
|