/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/UserControls/LocationUnavailableIndicator.xaml.cs
25 строк
562 B
yair100
Feature: Replaced 'folder not found' dialog with inline text (#18757)
21 июл 2026, 04:20
Не верифицирован
21 июл 2026, 04:20
ffa2eac
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. using CommunityToolkit.WinUI; using Microsoft.UI.Xaml.Controls; namespace Files.App.UserControls { public sealed partial class LocationUnavailableIndicator : UserControl { [GeneratedDependencyProperty] public partial string? Glyph { get; set; } [GeneratedDependencyProperty] public partial string? Title { get; set; } [GeneratedDependencyProperty] public partial string? Message { get; set; } public LocationUnavailableIndicator() { InitializeComponent(); } } }