using DevExpress.XtraEditors; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.WinFormUI { public static class ListBoxControlExtend { public static void InitialDefaultSettings(this ListBoxControl listBox,int ItemHeight=25) { listBox.ShowFocusRect = false; listBox.ItemHeight = ItemHeight; } } }