mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
16 lines
225 B
C#
16 lines
225 B
C#
using System;
|
|
|
|
namespace CPF.Mac.AppKit
|
|
{
|
|
[Flags]
|
|
public enum NSMenuProperty : ulong
|
|
{
|
|
Title = 0x1,
|
|
AttributedTitle = 0x2,
|
|
KeyEquivalent = 0x4,
|
|
Image = 0x8,
|
|
Enabled = 0x10,
|
|
AccessibilityDescription = 0x20
|
|
}
|
|
}
|