//----------------------------------------------------------------------- // // Copyright © Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------- namespace Microsoft.PowerShell.Commands.ShowCommandInternal { using System.Windows; /// /// Interaction logic for MultipleSelectionDialog.xaml /// public partial class MultipleSelectionDialog : Window { /// /// Initializes a new instance of the MultipleSelectionDialog class. /// public MultipleSelectionDialog() { this.InitializeComponent(); } /// /// OK Click event function /// /// event sender /// event arguments private void ButtonOK_Click(object sender, RoutedEventArgs e) { this.DialogResult = true; this.Close(); } /// /// Cancel Click event function /// /// event sender /// event arguments private void ButtonCancel_Click(object sender, RoutedEventArgs e) { this.DialogResult = false; this.Close(); } } }