LayoutUtils.cs 623 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Drawing;
  3. using System.Windows.Forms;
  4. namespace LYFZ.OtherExpansion.SkinControl
  5. {
  6. public class LayoutUtils
  7. {
  8. public static Rectangle DeflateRect(Rectangle rect, Padding padding)
  9. {
  10. rect.X += padding.Left;
  11. rect.Y += padding.Top;
  12. rect.Width -= padding.Horizontal;
  13. rect.Height -= padding.Vertical;
  14. return rect;
  15. }
  16. public static Rectangle RTLTranslate(Rectangle bounds, Rectangle withinBounds)
  17. {
  18. bounds.X = withinBounds.Width - bounds.Right;
  19. return bounds;
  20. }
  21. public static bool IsEmptyRect(Rectangle rect)
  22. {
  23. return rect.Width <= 0 || rect.Height <= 0;
  24. }
  25. }
  26. }