/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/common/Common.UI.Controls/Window/TransparentWindow/ShowingEventArgs.cs
26 строк
852 B
Niels Laute
Refactor transparent overlay into TransparentWindow + TransientSurface (#48915)
27 июн 2026, 00:25
Не верифицирован
27 июн 2026, 00:25
fb6843b
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; namespace Microsoft.PowerToys.Common.UI.Controls.Window; /// <summary> /// Data for <see cref="TransparentWindow.Showing"/>. Carries the transition the /// content should play, or <see langword="null"/> to let the content use its own /// configured show transition. /// </summary> public sealed class ShowingEventArgs : EventArgs { public ShowingEventArgs(Transition? transition) { Transition = transition; } /// <summary> /// Gets the transition the content should play, or <see langword="null"/> to /// use the content's own configured show transition. /// </summary> public Transition? Transition { get; } }