internal AutocompleteListView()
 {
     SetStyle(
         ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer | ControlStyles.UserPaint, true);
     base.Font = new Font(FontFamily.GenericSansSerif, 9);
     ItemHeight = Font.Height + 2;
     VerticalScroll.SmallChange = ItemHeight;
     BackColor = Color.White;
     LeftPadding = 18;
     ToolTipDuration = 3000;
     Colors = new Colors();
 }
 public MyListView()
 {
     Colors = new Colors();
 }