public xVisualButton()
 {
     SetStyle(ControlStyles.UserPaint | ControlStyles.SupportsTransparentBackColor, true);
     BackColor      = Color.Transparent;
     ForeColor      = Color.FromArgb(205, 205, 205);
     _Shade         = InnerShade.Dark;
     DoubleBuffered = true;
 }
 public xVisualGroupBox()
 {
     SetStyle(ControlStyles.UserPaint | ControlStyles.SupportsTransparentBackColor, true);
     BackColor      = Color.Transparent;
     ForeColor      = Color.FromArgb(205, 205, 205);
     Size           = new Size(174, 115);
     _Shade         = InnerShade.Light;
     DoubleBuffered = true;
 }