mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
14 lines
188 B
C#
14 lines
188 B
C#
using System;
|
|
|
|
namespace CPF.Mac.CoreGraphics
|
|
{
|
|
[Flags]
|
|
public enum CGWindowImageOption
|
|
{
|
|
Default = 0x0,
|
|
BoundsIgnoreFraming = 0x1,
|
|
ShouldBeOpaque = 0x2,
|
|
OnlyShadows = 0x4
|
|
}
|
|
}
|