mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 04:07:40 +02:00
16 lines
556 B
C#
16 lines
556 B
C#
|
|
// 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.
|
|||
|
|
|
|||
|
|
namespace Peek.Common.Constants
|
|||
|
|
{
|
|||
|
|
public static class WindowConstants
|
|||
|
|
{
|
|||
|
|
public const double MaxWindowToMonitorRatio = 0.80;
|
|||
|
|
public const double MinWindowHeight = 500;
|
|||
|
|
public const double MinWindowWidth = 680;
|
|||
|
|
public const double WindowWidthContentPadding = 7;
|
|||
|
|
public const double WindowHeightContentPadding = 16;
|
|||
|
|
}
|
|||
|
|
}
|