/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Microsoft.Management.UI.Internal/ManagementList/CommonControls/AutomationGroup.cs
24 строки
983 B
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.Automation.Peers; using System.Windows.Controls; namespace Microsoft.Management.UI.Internal { /// <summary> /// Represents a decorator that is always visible in the automation tree, indicating that its descendents belong to a logical group. /// </summary> [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.MSInternal", "CA903:InternalNamespaceShouldNotContainPublicTypes")] public class AutomationGroup : ContentControl { /// <summary> /// Returns the <see cref="AutomationPeer"/> implementations for this control. /// </summary> /// <returns>The <see cref="AutomationPeer"/> implementations for this control.</returns> protected override AutomationPeer OnCreateAutomationPeer() { return new ExtendedFrameworkElementAutomationPeer(this, AutomationControlType.Group, true); } } }