示例#1
0
 public static void SetGradientBackground(Control control, GradientStyle style)
 {
     if (control == null || control.IsDisposed)
     {
         return;
     }
     control.BackgroundImageLayout = ImageLayout.Stretch;
     control.BackgroundImage       = style.GetImage(control.Size);
 }
示例#2
0
 public static void SetGradientBackground(Control control, GradientStyle style)
 {
     if (control == null || control.IsDisposed) return;
     control.BackgroundImageLayout = ImageLayout.Stretch;
     control.BackgroundImage = style.GetImage(control.Size);
 }