CPF/CPF.Mac/Mac/CoreGraphics/CGWindowImageOption.cs
2023-11-21 23:05:03 +08:00

14 lines
188 B
C#

using System;
namespace CPF.Mac.CoreGraphics
{
[Flags]
public enum CGWindowImageOption
{
Default = 0x0,
BoundsIgnoreFraming = 0x1,
ShouldBeOpaque = 0x2,
OnlyShadows = 0x4
}
}