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/NSDragOperation.cs
Normal file
18
CPF.Mac/Mac/AppKit/NSDragOperation.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
|
||||
namespace CPF.Mac.AppKit
|
||||
{
|
||||
[Flags]
|
||||
public enum NSDragOperation : ulong
|
||||
{
|
||||
None = 0x0,
|
||||
Copy = 0x1,
|
||||
Link = 0x2,
|
||||
Generic = 0x4,
|
||||
Private = 0x8,
|
||||
AllObsolete = 0xF,
|
||||
Move = 0x10,
|
||||
Delete = 0x20,
|
||||
All = ulong.MaxValue
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user