12345678910111213141516171819202122232425262728 |
- using System;
- using System.Runtime.InteropServices;
- namespace LYFZ.OtherExpansion.SkinControl
- {
- [ComVisible(true)]
- [StructLayout(LayoutKind.Sequential)]
- public class COMRECT
- {
- public int left;
- public int top;
- public int right;
- public int bottom;
- public COMRECT()
- {
- }
- public COMRECT(int left, int top, int right, int bottom)
- {
- this.left = left;
- this.top = top;
- this.right = right;
- this.bottom = bottom;
- }
- public static COMRECT FromXYWH(int x, int y, int width, int height)
- {
- return new COMRECT(x, y, x + width, y + height);
- }
- }
- }
|