// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Windows; using Microsoft.Management.UI.Internal.ShowCommand; namespace Microsoft.PowerShell.Commands.ShowCommandInternal { /// /// Interaction logic for CmdletGUI.xaml. /// public partial class ShowCommandWindow : Window { #region Construction and Destructor /// /// Initializes a new instance of the ShowCommandWindow class. /// public ShowCommandWindow() { this.InitializeComponent(); this.SizeChanged += this.ShowCommandWindow_SizeChanged; this.LocationChanged += this.ShowCommandWindow_LocationChanged; this.StateChanged += this.ShowCommandWindow_StateChanged; } /// /// Saves the user settings. /// /// Event arguments. protected override void OnClosed(System.EventArgs e) { ShowCommandSettings.Default.Save(); base.OnClosed(e); } /// /// Saves size changes in user settings. /// /// Event sender. /// Event arguments. private void ShowCommandWindow_SizeChanged(object sender, SizeChangedEventArgs e) { ShowCommandSettings.Default.ShowOneCommandWidth = this.Width; ShowCommandSettings.Default.ShowOneCommandHeight = this.Height; } /// /// Saves position changes in user settings. /// /// Event sender. /// Event arguments. private void ShowCommandWindow_LocationChanged(object sender, System.EventArgs e) { ShowCommandSettings.Default.ShowOneCommandTop = this.Top; ShowCommandSettings.Default.ShowOneCommandLeft = this.Left; } /// /// Updates the user setting with window state. /// /// Event sender. /// Event arguments. private void ShowCommandWindow_StateChanged(object sender, System.EventArgs e) { ShowCommandSettings.Default.ShowOneCommandWindowMaximized = this.WindowState == WindowState.Maximized; } #endregion } }