/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Contexts/Window/IWindowContext.cs
18 строк
434 B
yair100
Feature: Added toggle states to toolbar buttons (#18799)
06 авг 2026, 01:39
Не верифицирован
06 авг 2026, 01:39
fb8b286
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Data.Contexts { public interface IWindowContext : INotifyPropertyChanged { bool IsCompactOverlay { get; } bool IsFullScreen { get; } /// <inheritdoc cref="IWindowsSecurityService.IsAppElevated"/> bool IsRunningAsAdmin { get; } /// <inheritdoc cref="IWindowsSecurityService.CanDragAndDrop"/> bool CanDragAndDrop { get; } } }