mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-18 09:44:52 +08:00
16 lines
210 B
C#
16 lines
210 B
C#
namespace CPF.Mac.AppKit
|
|
{
|
|
public enum NSTextMovement : ulong
|
|
{
|
|
Other = 0uL,
|
|
Return = 0x10,
|
|
Tab = 17uL,
|
|
Backtab = 18uL,
|
|
Left = 19uL,
|
|
Right = 20uL,
|
|
Up = 21uL,
|
|
Down = 22uL,
|
|
Cancel = 23uL
|
|
}
|
|
}
|