2020-04-08 01:19:14 +08:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.ViewModels;
|
|
|
|
|
using Windows.UI.Xaml.Controls;
|
2020-03-12 01:43:32 +08:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Views
|
|
|
|
|
{
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Root page.
|
|
|
|
|
/// </summary>
|
2020-03-12 01:43:32 +08:00
|
|
|
|
public sealed partial class ShellPage : UserControl
|
|
|
|
|
{
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Delcaration for the ipc callback function.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="msg">message.</param>
|
|
|
|
|
public delegate void IPCMessageCallback(string msg);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-08 01:19:14 +08:00
|
|
|
|
/// Gets or sets a shell handler to be used to update contents of the shell dynamically from page within the frame.
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// </summary>
|
2020-04-08 01:19:14 +08:00
|
|
|
|
public static ShellPage ShellHandler { get; set; }
|
2020-03-12 01:43:32 +08:00
|
|
|
|
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// <summary>
|
2020-04-08 01:19:14 +08:00
|
|
|
|
/// Gets or sets iPC callback function for run on start up.
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// </summary>
|
2020-04-08 01:19:14 +08:00
|
|
|
|
public static IPCMessageCallback DefaultSndMSGCallback { get; set; }
|
2020-03-25 10:55:02 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-08 01:19:14 +08:00
|
|
|
|
/// Gets view model.
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// </summary>
|
2020-04-08 01:19:14 +08:00
|
|
|
|
public ShellViewModel ViewModel { get; } = new ShellViewModel();
|
2020-03-25 10:55:02 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="ShellPage"/> class.
|
|
|
|
|
/// Shell page constructor.
|
|
|
|
|
/// </summary>
|
2020-03-12 01:43:32 +08:00
|
|
|
|
public ShellPage()
|
|
|
|
|
{
|
2020-03-25 10:55:02 +08:00
|
|
|
|
this.InitializeComponent();
|
|
|
|
|
|
|
|
|
|
this.DataContext = this.ViewModel;
|
2020-03-30 17:02:25 +08:00
|
|
|
|
ShellHandler = this;
|
2020-03-25 10:55:02 +08:00
|
|
|
|
this.ViewModel.Initialize(this.shellFrame, this.navigationView, this.KeyboardAccelerators);
|
|
|
|
|
this.shellFrame.Navigate(typeof(GeneralPage));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2020-03-30 17:02:25 +08:00
|
|
|
|
/// Run on start up callback function elevated initialization.
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="implmentation">delegate function implementation.</param>
|
2020-03-30 17:02:25 +08:00
|
|
|
|
public void SetDefaultSndMessageCallback(IPCMessageCallback implmentation)
|
2020-03-25 10:55:02 +08:00
|
|
|
|
{
|
2020-04-08 01:19:14 +08:00
|
|
|
|
DefaultSndMSGCallback = implmentation;
|
2020-03-25 10:55:02 +08:00
|
|
|
|
}
|
2020-03-12 01:43:32 +08:00
|
|
|
|
}
|
2020-04-08 01:19:14 +08:00
|
|
|
|
}
|