/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/WindowPosition.cs
58 строк
2 KB
Clint Rutkas
Fix SA1623: Fix property documentation summaries (#46717)
01 апр 2026, 19:46
Не верифицирован
01 апр 2026, 19:46
565094a
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using Windows.Graphics; namespace Microsoft.CmdPal.UI.ViewModels; public sealed class WindowPosition { /// <summary> /// Gets the left position in device pixels. /// </summary> public int X { get; init; } /// <summary> /// Gets the top position in device pixels. /// </summary> public int Y { get; init; } /// <summary> /// Gets the width in device pixels. /// </summary> public int Width { get; init; } /// <summary> /// Gets the height in device pixels. /// </summary> public int Height { get; init; } /// <summary> /// Gets the width of the screen in device pixels where the window is located. /// </summary> public int ScreenWidth { get; init; } /// <summary> /// Gets the height of the screen in device pixels where the window is located. /// </summary> public int ScreenHeight { get; init; } /// <summary> /// Gets the DPI (dots per inch) of the display where the window is located. /// </summary> public int Dpi { get; init; } /// <summary> /// Gets a value indicating whether the width and height of the window are valid (greater than 0). /// </summary> public bool IsSizeValid => Width > 0 && Height > 0; /// <summary> /// Converts the window position properties to a <see cref="RectInt32"/> structure representing the physical window rectangle. /// </summary> public RectInt32 ToPhysicalWindowRectangle() { return new RectInt32(X, Y, Width, Height); } }