/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Items/PathBoxItem.cs
20 строк
649 B
yair100
Feature: Added chevron to last item in breadcrumb bar (#18603)
17 июн 2026, 02:49
Не верифицирован
17 июн 2026, 02:49
3fa2925
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Data.Items { public sealed class PathBoxItem { public string? Title { get; set; } public string? Path { get; set; } public string? ChevronToolTip { get; set; } // Only enumerable for fully qualified filesystem paths. Excludes the search-results // placeholder (Path == null), shell virtual locations ("Shell:..." / "Home" / "Settings" // / "ReleaseNotes"), and other non-fileystem entries that GetSubfolders can't enumerate. public bool IsChevronVisible => !string.IsNullOrEmpty(Path) && SystemIO.Path.IsPathFullyQualified(Path); } }