mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-19 01:58:20 +08:00
初始化
This commit is contained in:
16
CPF.Mac/Mac/CoreAnimation/CAAutoresizingMask.cs
Normal file
16
CPF.Mac/Mac/CoreAnimation/CAAutoresizingMask.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace CPF.Mac.CoreAnimation
|
||||
{
|
||||
[Flags]
|
||||
public enum CAAutoresizingMask
|
||||
{
|
||||
NotSizable = 0x0,
|
||||
MinXMargin = 0x1,
|
||||
WidthSizable = 0x2,
|
||||
MaxXMargin = 0x4,
|
||||
MinYMargin = 0x8,
|
||||
HeightSizable = 0x10,
|
||||
MaxYMargin = 0x20
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user