RegionHelper.cs 734 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Drawing;
  3. using System.Drawing.Drawing2D;
  4. using System.Windows.Forms;
  5. namespace LYFZ.OtherExpansion.SkinClass
  6. {
  7. public static class RegionHelper
  8. {
  9. public static void CreateRegion(Control control, Rectangle bounds, int radius, RoundStyle roundStyle)
  10. {
  11. using (GraphicsPath path = GraphicsPathHelper.CreatePath(bounds, radius, roundStyle, true))
  12. {
  13. Region region = new Region(path);
  14. path.Widen(Pens.White);
  15. region.Union(path);
  16. if (control.Region != null)
  17. {
  18. control.Region.Dispose();
  19. }
  20. control.Region = region;
  21. }
  22. }
  23. public static void CreateRegion(Control control, Rectangle bounds)
  24. {
  25. RegionHelper.CreateRegion(control, bounds, 8, RoundStyle.All);
  26. }
  27. }
  28. }