mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 23:13:33 +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
|
||
|
}
|
||
|
}
|