/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Views/Layouts/IBaseLayoutPage.cs
40 строк
960 B
yair100
Feature: Improved context menu performance (#18803)
10 авг 2026, 00:06
Не верифицирован
10 авг 2026, 00:06
a47ab17
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. using Files.App.ViewModels.Layouts; using Microsoft.UI.Xaml.Controls; namespace Files.App.Views.Layouts { public interface IBaseLayoutPage : IDisposable { bool IsRenamingItem { get; } bool IsItemSelected { get; } bool IsMiddleClickToScrollEnabled { get; set; } /// <summary> /// If true, the preview pane is not updated when the selected item is changed. /// </summary> bool LockPreviewPaneContent { get; set; } List<ListedItem>? SelectedItems { get; } ListedItem? SelectedItem { get; } ItemManipulationModel ItemManipulationModel { get; } InfoPaneViewModel InfoPaneViewModel { get; } SelectedItemsPropertiesViewModel SelectedItemsPropertiesViewModel { get; } StatusBarViewModel StatusBarViewModel { get; } BaseLayoutViewModel? CommandsViewModel { get; } MenuFlyout ItemContextMenuFlyout { get; } MenuFlyout BaseContextMenuFlyout { get; } } }