12345678910111213141516171819202122232425262728 |
- using System;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- using System.Windows.Forms;
- namespace LYFZ.OtherExpansion.SkinClass
- {
- public static class RegionHelper
- {
- public static void CreateRegion(Control control, Rectangle bounds, int radius, RoundStyle roundStyle)
- {
- using (GraphicsPath path = GraphicsPathHelper.CreatePath(bounds, radius, roundStyle, true))
- {
- Region region = new Region(path);
- path.Widen(Pens.White);
- region.Union(path);
- if (control.Region != null)
- {
- control.Region.Dispose();
- }
- control.Region = region;
- }
- }
- public static void CreateRegion(Control control, Rectangle bounds)
- {
- RegionHelper.CreateRegion(control, bounds, 8, RoundStyle.All);
- }
- }
- }
|