// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Windows; namespace Microsoft.PowerShell.Commands.ShowCommandInternal { /// /// 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(); } } }