namespace Yw.WinFrmUI
{
///
///
///
public static class ListBoxControlExtensions
{
///
///
///
public static void InitialDefaultSettings(this ListBoxControl listBox, int ItemHeight = 25)
{
listBox.ShowFocusRect = false;
listBox.ItemHeight = ItemHeight;
}
}
}