2020-04-07 14:19:33 -07:00
|
|
|
|
// 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;
|
|
|
|
|
|
using System.Windows;
|
2020-05-15 09:08:39 -07:00
|
|
|
|
using Microsoft.PowerLauncher.Telemetry;
|
2020-04-07 14:19:33 -07:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Views;
|
2020-05-15 09:08:39 -07:00
|
|
|
|
using Microsoft.PowerToys.Telemetry;
|
2020-04-07 10:19:14 -07:00
|
|
|
|
using Microsoft.Toolkit.Wpf.UI.XamlHost;
|
2020-04-26 17:34:03 -07:00
|
|
|
|
using Windows.UI.Popups;
|
2020-04-07 14:19:33 -07:00
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Runner
|
|
|
|
|
|
{
|
|
|
|
|
|
// Interaction logic for MainWindow.xaml.
|
|
|
|
|
|
public partial class MainWindow : Window
|
|
|
|
|
|
{
|
|
|
|
|
|
public MainWindow()
|
2020-05-15 09:08:39 -07:00
|
|
|
|
{
|
|
|
|
|
|
var bootTime = new System.Diagnostics.Stopwatch();
|
|
|
|
|
|
bootTime.Start();
|
|
|
|
|
|
|
|
|
|
|
|
this.InitializeComponent();
|
|
|
|
|
|
bootTime.Stop();
|
|
|
|
|
|
|
|
|
|
|
|
PowerToysTelemetry.Log.WriteEvent(new SettingsBootEvent() { BootTimeMs = bootTime.ElapsedMilliseconds });
|
2020-04-07 14:19:33 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void WindowsXamlHost_ChildChanged(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Hook up x:Bind source.
|
|
|
|
|
|
WindowsXamlHost windowsXamlHost = sender as WindowsXamlHost;
|
|
|
|
|
|
ShellPage shellPage = windowsXamlHost.GetUwpInternalObject() as ShellPage;
|
|
|
|
|
|
|
2020-03-24 19:55:02 -07:00
|
|
|
|
if (shellPage != null)
|
|
|
|
|
|
{
|
2020-03-30 02:02:25 -07:00
|
|
|
|
// send IPC Message
|
2020-04-07 10:19:14 -07:00
|
|
|
|
shellPage.SetDefaultSndMessageCallback(msg =>
|
2020-03-24 19:55:02 -07:00
|
|
|
|
{
|
2020-05-15 09:08:39 -07:00
|
|
|
|
// IPC Manager is null when launching runner directly
|
2020-05-05 11:44:54 -07:00
|
|
|
|
Program.GetTwoWayIPCManager()?.Send(msg);
|
2020-03-24 19:55:02 -07:00
|
|
|
|
});
|
2020-05-05 10:02:31 -07:00
|
|
|
|
|
|
|
|
|
|
// send IPC Message
|
|
|
|
|
|
shellPage.SetRestartAdminSndMessageCallback(msg =>
|
|
|
|
|
|
{
|
|
|
|
|
|
Program.GetTwoWayIPCManager().Send(msg);
|
|
|
|
|
|
System.Windows.Application.Current.Shutdown(); // close application
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
shellPage.SetElevationStatus(Program.IsElevated);
|
2020-05-14 12:36:27 +03:00
|
|
|
|
shellPage.SetIsUserAnAdmin(Program.IsUserAnAdmin);
|
2020-05-05 10:02:31 -07:00
|
|
|
|
shellPage.Refresh();
|
2020-04-07 14:19:33 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-04-10 15:22:07 -07:00
|
|
|
|
}
|