COMRECT.cs 575 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace LYFZ.OtherExpansion.SkinControl
  4. {
  5. [ComVisible(true)]
  6. [StructLayout(LayoutKind.Sequential)]
  7. public class COMRECT
  8. {
  9. public int left;
  10. public int top;
  11. public int right;
  12. public int bottom;
  13. public COMRECT()
  14. {
  15. }
  16. public COMRECT(int left, int top, int right, int bottom)
  17. {
  18. this.left = left;
  19. this.top = top;
  20. this.right = right;
  21. this.bottom = bottom;
  22. }
  23. public static COMRECT FromXYWH(int x, int y, int width, int height)
  24. {
  25. return new COMRECT(x, y, x + width, y + height);
  26. }
  27. }
  28. }