17 lines
340 B
C#
17 lines
340 B
C#
|
|
// Licensed to the .NET Foundation under one or more agreements.
|
||
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
||
|
|
|
||
|
|
namespace Microsoft.Maui.Platform.Linux.Services;
|
||
|
|
|
||
|
|
[Flags]
|
||
|
|
public enum KeyModifiers
|
||
|
|
{
|
||
|
|
None = 0,
|
||
|
|
Shift = 1,
|
||
|
|
Control = 2,
|
||
|
|
Alt = 4,
|
||
|
|
Super = 8,
|
||
|
|
CapsLock = 0x10,
|
||
|
|
NumLock = 0x20
|
||
|
|
}
|