RECT.cs 991 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Drawing;
  3. namespace LYFZ.OtherExpansion.Win32.Struct
  4. {
  5. public struct RECT
  6. {
  7. public int Left;
  8. public int Top;
  9. public int Right;
  10. public int Bottom;
  11. public Rectangle Rect
  12. {
  13. get
  14. {
  15. return new Rectangle(this.Left, this.Top, this.Right - this.Left, this.Bottom - this.Top);
  16. }
  17. }
  18. public Size Size
  19. {
  20. get
  21. {
  22. return new Size(this.Right - this.Left, this.Bottom - this.Top);
  23. }
  24. }
  25. public RECT(int left, int top, int right, int bottom)
  26. {
  27. this.Left = left;
  28. this.Top = top;
  29. this.Right = right;
  30. this.Bottom = bottom;
  31. }
  32. public RECT(Rectangle rect)
  33. {
  34. this.Left = rect.Left;
  35. this.Top = rect.Top;
  36. this.Right = rect.Right;
  37. this.Bottom = rect.Bottom;
  38. }
  39. public static RECT FromXYWH(int x, int y, int width, int height)
  40. {
  41. return new RECT(x, y, x + width, y + height);
  42. }
  43. public static RECT FromRectangle(Rectangle rect)
  44. {
  45. return new RECT(rect.Left, rect.Top, rect.Right, rect.Bottom);
  46. }
  47. }
  48. }