mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
* Add Default Value field to all controls * Add reset button to Control field * Improve button Improve appearance Add ToolTipService Add AutomationProperties * Move Reset button to Shortcut Dialog * Fix Video Conferencing crash * Change `Use Default` to `Reset`
29 lines
926 B
C#
29 lines
926 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.
|
|
|
|
using System.Text.Json;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
|
{
|
|
public class PeekProperties
|
|
{
|
|
public HotkeySettings DefaultActivationShortcut => new HotkeySettings(false, true, false, false, 0x20);
|
|
|
|
public PeekProperties()
|
|
{
|
|
ActivationShortcut = DefaultActivationShortcut;
|
|
AlwaysRunNotElevated = new BoolProperty(true);
|
|
CloseAfterLosingFocus = new BoolProperty(false);
|
|
}
|
|
|
|
public HotkeySettings ActivationShortcut { get; set; }
|
|
|
|
public BoolProperty AlwaysRunNotElevated { get; set; }
|
|
|
|
public BoolProperty CloseAfterLosingFocus { get; set; }
|
|
|
|
public override string ToString() => JsonSerializer.Serialize(this);
|
|
}
|
|
}
|