mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-11-08 18:35:02 +08:00
13 lines
179 B
C#
13 lines
179 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace CPF.Mac.AppKit
|
||
|
|
{
|
||
|
|
[Flags]
|
||
|
|
public enum NSGradientDrawingOptions : ulong
|
||
|
|
{
|
||
|
|
None = 0x0,
|
||
|
|
BeforeStartingLocation = 0x1,
|
||
|
|
AfterEndingLocation = 0x2
|
||
|
|
}
|
||
|
|
}
|