mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 14:04:34 +08:00
16 lines
247 B
C#
16 lines
247 B
C#
using System;
|
|
|
|
namespace CPF.Mac.CoreGraphics
|
|
{
|
|
[Flags]
|
|
public enum CGWindowListOption
|
|
{
|
|
All = 0x0,
|
|
OnScreenOnly = 0x1,
|
|
OnScreenAboveWindow = 0x2,
|
|
OnScreenBelowWindow = 0x4,
|
|
IncludingWindow = 0x8,
|
|
ExcludeDesktopElements = 0x10
|
|
}
|
|
}
|