using DevExpress.XtraEditors;
|
using System;
|
using System.Collections.Generic;
|
using System.Drawing;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.WinFormUI
|
{
|
public static class XtraFormExtend
|
{
|
public static void SetGlowEffect(this XtraForm form)
|
{
|
form.ActiveGlowColor = Color.FromArgb(0, 122, 204);
|
form.FormBorderEffect = FormBorderEffect.Glow;
|
}
|
}
|
}
|