mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-18 17:48:18 +08:00
22 lines
309 B
C#
22 lines
309 B
C#
![]() |
namespace CPF.Mac.AppKit
|
||
|
{
|
||
|
public struct NSEdgeInsets
|
||
|
{
|
||
|
public double Top;
|
||
|
|
||
|
public double Left;
|
||
|
|
||
|
public double Bottom;
|
||
|
|
||
|
public double Right;
|
||
|
|
||
|
public NSEdgeInsets(double top, double left, double bottom, double right)
|
||
|
{
|
||
|
Top = top;
|
||
|
Left = left;
|
||
|
Bottom = bottom;
|
||
|
Right = right;
|
||
|
}
|
||
|
}
|
||
|
}
|