using DevExpress.XtraEditors; namespace IStation.Win { public static class ListBoxControlExtend { public static void InitialDefaultSettings(this ListBoxControl listBox, int ItemHeight = 25) { listBox.ShowFocusRect = false; listBox.ItemHeight = ItemHeight; } } }