forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShowCommandWindow.xaml.cs
More file actions
72 lines (66 loc) · 2.73 KB
/
Copy pathShowCommandWindow.xaml.cs
File metadata and controls
72 lines (66 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//-----------------------------------------------------------------------
// <copyright file="ShowCommandWindow.xaml.cs" company="Microsoft">
// Copyright © Microsoft Corporation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace Microsoft.PowerShell.Commands.ShowCommandInternal
{
using System.Windows;
using Microsoft.Management.UI.Internal.ShowCommand;
/// <summary>
/// Interaction logic for CmdletGUI.xaml
/// </summary>
public partial class ShowCommandWindow : Window
{
#region Construction and Destructor
/// <summary>
/// Initializes a new instance of the ShowCommandWindow class.
/// </summary>
public ShowCommandWindow()
{
this.InitializeComponent();
this.SizeChanged += new SizeChangedEventHandler(this.ShowCommandWindow_SizeChanged);
this.LocationChanged += new System.EventHandler(this.ShowCommandWindow_LocationChanged);
this.StateChanged += new System.EventHandler(this.ShowCommandWindow_StateChanged);
}
/// <summary>
/// Saves the user settings
/// </summary>
/// <param name="e">event arguments</param>
protected override void OnClosed(System.EventArgs e)
{
ShowCommandSettings.Default.Save();
base.OnClosed(e);
}
/// <summary>
/// Saves size changes in user settings
/// </summary>
/// <param name="sender">event sender</param>
/// <param name="e">event arguments</param>
private void ShowCommandWindow_SizeChanged(object sender, SizeChangedEventArgs e)
{
ShowCommandSettings.Default.ShowOneCommandWidth = this.Width;
ShowCommandSettings.Default.ShowOneCommandHeight = this.Height;
}
/// <summary>
/// Saves position changes in user settings
/// </summary>
/// <param name="sender">event sender</param>
/// <param name="e">event arguments</param>
private void ShowCommandWindow_LocationChanged(object sender, System.EventArgs e)
{
ShowCommandSettings.Default.ShowOneCommandTop = this.Top;
ShowCommandSettings.Default.ShowOneCommandLeft = this.Left;
}
/// <summary>
/// Updates the user setting with window state
/// </summary>
/// <param name="sender">event sender</param>
/// <param name="e">event arguments</param>
private void ShowCommandWindow_StateChanged(object sender, System.EventArgs e)
{
ShowCommandSettings.Default.ShowOneCommandWindowMaximized = this.WindowState == WindowState.Maximized;
}
#endregion
}
}