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

22 lines
302 B
C#

namespace CPF.Mac.AppKit
{
public enum NSBezelStyle : ulong
{
Rounded = 1uL,
RegularSquare,
ThickSquare,
ThickerSquare,
Disclosure,
ShadowlessSquare,
Circular,
TexturedSquare,
HelpButton,
SmallSquare,
TexturedRounded,
RoundRect,
Recessed,
RoundedDisclosure,
Inline
}
}