/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Microsoft.Management.UI.Internal/ShowCommand/Windows/MultipleSelectionDialog.xaml.cs
43 строки
1 KB
Steve Lee
Update copyright notice to latest guidance (#12190)
24 мар 2020, 21:08
Не верифицирован
24 мар 2020, 21:08
b7cb335
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Windows; namespace Microsoft.PowerShell.Commands.ShowCommandInternal { /// <summary> /// Interaction logic for MultipleSelectionDialog.xaml. /// </summary> public partial class MultipleSelectionDialog : Window { /// <summary> /// Initializes a new instance of the MultipleSelectionDialog class. /// </summary> public MultipleSelectionDialog() { this.InitializeComponent(); } /// <summary> /// OK Click event function. /// </summary> /// <param name="sender">Event sender.</param> /// <param name="e">Event arguments.</param> private void ButtonOK_Click(object sender, RoutedEventArgs e) { this.DialogResult = true; this.Close(); } /// <summary> /// Cancel Click event function. /// </summary> /// <param name="sender">Event sender.</param> /// <param name="e">Event arguments.</param> private void ButtonCancel_Click(object sender, RoutedEventArgs e) { this.DialogResult = false; this.Close(); } } }