/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App.Controls/BladeView/BladeView.Events.cs
22 строки
656 B
terat
Code Quality: Resolve all nullability warnings (#18455)
05 май 2026, 05:45
Не верифицирован
05 май 2026, 05:45
be7d323
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Files.App.Controls { /// <summary> /// A container that hosts <see cref="BladeItem"/> controls in a horizontal scrolling list /// Based on the Azure portal UI /// </summary> public partial class BladeView { /// <summary> /// Fires whenever a <see cref="BladeItem"/> is opened /// </summary> public event EventHandler<BladeItem>? BladeOpened; /// <summary> /// Fires whenever a <see cref="BladeItem"/> is closed /// </summary> public event EventHandler<BladeItem>? BladeClosed; } }