/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Contexts/ContentPage/IContentPageContext.cs
36 строк
782 B
Yair
Code Quality: Removed old address bar code (#17286)
21 июл 2025, 19:02
Не верифицирован
21 июл 2025, 19:02
6b3b112
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Data.Contexts { public interface IContentPageContext : INotifyPropertyChanged { IShellPage? ShellPage { get; } ContentPageTypes PageType { get; } Type PageLayoutType { get; } ListedItem? Folder { get; } bool HasItem { get; } bool HasSelection { get; } bool CanRefresh { get; } ListedItem? SelectedItem { get; } IReadOnlyList<ListedItem> SelectedItems { get; } bool CanGoBack { get; } bool CanGoForward { get; } bool CanNavigateToParent { get; } bool CanCreateItem { get; } bool IsMultiPaneAvailable { get; } bool IsMultiPaneActive { get; } bool IsGitRepository { get; } bool CanExecuteGitAction { get; } string? SolutionFilePath { get; } } }