namespace Yw.WinFrmUI { /// /// /// public static class XtraFormExtensions { /// /// /// public static void SetGlowEffect(this XtraForm form) { form.ActiveGlowColor = Color.FromArgb(0, 122, 204); form.FormBorderEffect = FormBorderEffect.Glow; } } }