Skip to content

Commit

Permalink
[Settings, OOBE] set location to center screen (#10022)
Browse files Browse the repository at this point in the history
and ensure the window is inside the screen work area
  • Loading branch information
enricogior committed Mar 4, 2021
1 parent f7e2fa5 commit 8f3e051
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 15 deletions.
16 changes: 2 additions & 14 deletions src/settings-ui/PowerToys.Settings/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,8 @@ private void InitHiddenSettingsWindow()
{
settingsWindow = new MainWindow();

// To avoid visual flickering, show the window with a size of 0,0
// and don't show it in the taskbar
var originalHight = settingsWindow.Height;
var originalWidth = settingsWindow.Width;
settingsWindow.Height = 0;
settingsWindow.Width = 0;
settingsWindow.ShowInTaskbar = false;

settingsWindow.Show();
settingsWindow.Hide();

settingsWindow.Height = originalHight;
settingsWindow.Width = originalWidth;
settingsWindow.ShowInTaskbar = true;
Utils.ShowHide(settingsWindow);
Utils.CenterToScreen(settingsWindow);
}

private void Application_Startup(object sender, StartupEventArgs e)
Expand Down
10 changes: 9 additions & 1 deletion src/settings-ui/PowerToys.Settings/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@
xmlns:Controls="clr-namespace:Microsoft.Toolkit.Wpf.UI.Controls;assembly=Microsoft.Toolkit.Wpf.UI.Controls"
xmlns:xaml="clr-namespace:Microsoft.Toolkit.Wpf.UI.XamlHost;assembly=Microsoft.Toolkit.Wpf.UI.XamlHost"
mc:Ignorable="d"
Title="PowerToys Settings" MinWidth="480" Height="800" Width="1100" Closing="MainWindow_Closing" Loaded="MainWindow_Loaded" Activated="MainWindow_Activated">
Title="PowerToys Settings"
Height="860"
MinHeight="400"
Width="1180"
MinWidth="480"
WindowStartupLocation="CenterScreen"
Closing="MainWindow_Closing"
Loaded="MainWindow_Loaded"
Activated="MainWindow_Activated">
<Grid>
<xaml:WindowsXamlHost InitialTypeName="Microsoft.PowerToys.Settings.UI.Views.ShellPage" ChildChanged="WindowsXamlHost_ChildChanged" />
</Grid>
Expand Down
3 changes: 3 additions & 0 deletions src/settings-ui/PowerToys.Settings/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ public MainWindow()
bootTime.Start();

this.InitializeComponent();

Utils.FitToScreen(this);

bootTime.Stop();

PowerToysTelemetry.Log.WriteEvent(new SettingsBootEvent() { BootTimeMs = bootTime.ElapsedMilliseconds });
Expand Down
1 change: 1 addition & 0 deletions src/settings-ui/PowerToys.Settings/OobeWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public static bool IsOpened
public OobeWindow()
{
InitializeComponent();
Utils.FitToScreen(this);
}

private void Window_Closed(object sender, EventArgs e)
Expand Down
70 changes: 70 additions & 0 deletions src/settings-ui/PowerToys.Settings/Utils.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
// Copyright (c) Microsoft Corporation
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System.Windows;

namespace PowerToys.Settings
{
internal class Utils
{
public static void FitToScreen(Window window)
{
if (SystemParameters.WorkArea.Width < window.Width)
{
window.Width = SystemParameters.WorkArea.Width;
}

if (SystemParameters.WorkArea.Height < window.Height)
{
window.Height = SystemParameters.WorkArea.Height;
}
}

public static void CenterToScreen(Window window)
{
if (SystemParameters.WorkArea.Height <= window.Height)
{
window.Top = 0;
}
else
{
window.Top = (SystemParameters.WorkArea.Height - window.Height) / 2;
}

if (SystemParameters.WorkArea.Width <= window.Width)
{
window.Left = 0;
}
else
{
window.Left = (SystemParameters.WorkArea.Width - window.Width) / 2;
}
}

public static void ShowHide(Window window)
{
// To limit the visual flickering, show the window with a size of 0,0
// and don't show it in the taskbar
var originalHeight = window.Height;
var originalWidth = window.Width;
var originalMinHeight = window.MinHeight;
var originalMinWidth = window.MinWidth;

window.MinHeight = 0;
window.MinWidth = 0;
window.Height = 0;
window.Width = 0;
window.ShowInTaskbar = false;

window.Show();
window.Hide();

window.Height = originalHeight;
window.Width = originalWidth;
window.MinHeight = originalMinHeight;
window.MinWidth = originalMinWidth;
window.ShowInTaskbar = true;
}
}
}

0 comments on commit 8f3e051

Please sign in to comment.