mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-19 01:58:20 +08:00
初始化
This commit is contained in:
18
CPF.Mac/Mac/AppKit/NSEventModifierMask.cs
Normal file
18
CPF.Mac/Mac/AppKit/NSEventModifierMask.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
|
||||
namespace CPF.Mac.AppKit
|
||||
{
|
||||
[Flags]
|
||||
public enum NSEventModifierMask : ulong
|
||||
{
|
||||
AlphaShiftKeyMask = 0x10000,
|
||||
ShiftKeyMask = 0x20000,
|
||||
ControlKeyMask = 0x40000,
|
||||
AlternateKeyMask = 0x80000,
|
||||
CommandKeyMask = 0x100000,
|
||||
NumericPadKeyMask = 0x200000,
|
||||
HelpKeyMask = 0x400000,
|
||||
FunctionKeyMask = 0x800000,
|
||||
DeviceIndependentModifierFlagsMask = 0xFFFF0000
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user