/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Contracts/IAddressToolbarViewModel.cs
35 строк
961 B
Yair
Code Quality: Fixed Omnibar issues (#17408)
07 авг 2025, 17:17
Не верифицирован
07 авг 2025, 17:17
d609eb8
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Data.Contracts { public interface IAddressToolbarViewModel { public bool CanRefresh { get; set; } public bool CanCopyPathInPage { get; set; } public bool CanNavigateToParent { get; set; } public bool CanGoBack { get; set; } public bool CanGoForward { get; set; } public bool IsSingleItemOverride { get; set; } public string PathControlDisplayText { get; set; } public ObservableCollection<PathBoxItem> PathComponents { get; } public delegate void ToolbarQuerySubmittedEventHandler(object sender, ToolbarQuerySubmittedEventArgs e); public delegate void ItemDraggedOverPathItemEventHandler(object sender, PathNavigationEventArgs e); public event ToolbarQuerySubmittedEventHandler PathBoxQuerySubmitted; public event ItemDraggedOverPathItemEventHandler ItemDraggedOverPathItem; public event EventHandler RefreshWidgetsRequested; } }