Windows-powershell / PowerShell-master /src /Microsoft.Management.UI.Internal /ShowCommand /Controls /CmdletControl.xaml.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System.Windows; | |
| using System.Windows.Controls; | |
| namespace Microsoft.PowerShell.Commands.ShowCommandInternal | |
| { | |
| /// <summary> | |
| /// Interaction logic for CmdletControl.xaml. | |
| /// </summary> | |
| public partial class CmdletControl : UserControl | |
| { | |
| /// <summary> | |
| /// Field used for the CurrentCommandViewModel parameter. | |
| /// </summary> | |
| private CommandViewModel currentCommandViewModel; | |
| /// <summary> | |
| /// Initializes a new instance of the CmdletControl class. | |
| /// </summary> | |
| public CmdletControl() | |
| { | |
| InitializeComponent(); | |
| this.NotImportedControl.ImportModuleButton.Click += ImportModuleButton_Click; | |
| this.ParameterSetTabControl.DataContextChanged += new DependencyPropertyChangedEventHandler(this.ParameterSetTabControl_DataContextChanged); | |
| this.KeyDown += this.CmdletControl_KeyDown; | |
| this.helpButton.innerButton.Click += this.HelpButton_Click; | |
| } | |
| /// <summary> | |
| /// Gets the owner of the ViewModel. | |
| /// </summary> | |
| private CommandViewModel CurrentCommandViewModel | |
| { | |
| get { return this.currentCommandViewModel; } | |
| } | |
| /// <summary> | |
| /// DataContextChanged event. | |
| /// </summary> | |
| /// <param name="sender">Event sender.</param> | |
| /// <param name="e">Event args.</param> | |
| private void ParameterSetTabControl_DataContextChanged(object sender, DependencyPropertyChangedEventArgs e) | |
| { | |
| if (this.DataContext == null) | |
| { | |
| return; | |
| } | |
| CommandViewModel viewModel = (CommandViewModel)this.DataContext; | |
| this.currentCommandViewModel = viewModel; | |
| if (viewModel.ParameterSets.Count == 0) | |
| { | |
| return; | |
| } | |
| this.ParameterSetTabControl.SelectedItem = viewModel.ParameterSets[0]; | |
| } | |
| /// <summary> | |
| /// Key down event for user press F1 button. | |
| /// </summary> | |
| /// <param name="sender">Event sender.</param> | |
| /// <param name="e">Event args.</param> | |
| private void CmdletControl_KeyDown(object sender, System.Windows.Input.KeyEventArgs e) | |
| { | |
| if (e.Key == System.Windows.Input.Key.F1) | |
| { | |
| this.CurrentCommandViewModel.OpenHelpWindow(); | |
| } | |
| } | |
| /// <summary> | |
| /// Help button event. | |
| /// </summary> | |
| /// <param name="sender">Event sender.</param> | |
| /// <param name="e">Event args.</param> | |
| private void HelpButton_Click(object sender, RoutedEventArgs e) | |
| { | |
| this.CurrentCommandViewModel.OpenHelpWindow(); | |
| } | |
| /// <summary> | |
| /// Import Module Button event. | |
| /// </summary> | |
| /// <param name="sender">Event sender.</param> | |
| /// <param name="e">Event args.</param> | |
| private void ImportModuleButton_Click(object sender, RoutedEventArgs e) | |
| { | |
| this.CurrentCommandViewModel.OnImportModule(); | |
| } | |
| } | |
| } | |