mirror of
https://gitee.com/csharpui/CPF.git
synced 2026-08-27 19:17:05 +08:00
初始化
This commit is contained in:
16
CPF.Mac/Mac/CoreAnimation/CAEdgeAntialiasingMask.cs
Normal file
16
CPF.Mac/Mac/CoreAnimation/CAEdgeAntialiasingMask.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace CPF.Mac.CoreAnimation
|
||||
{
|
||||
[Flags]
|
||||
public enum CAEdgeAntialiasingMask
|
||||
{
|
||||
LeftEdge = 0x1,
|
||||
RightEdge = 0x2,
|
||||
BottomEdge = 0x4,
|
||||
TopEdge = 0x8,
|
||||
All = 0xF,
|
||||
LeftRightEdges = 0x3,
|
||||
TopBottomEdges = 0xC
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user