AutocompleteMenuNS.AutocompleteListView.AutocompleteListView C# (CSharp) Method

AutocompleteListView() private method

private AutocompleteListView ( ) : System
return System
        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.Gainsboro;
            LeftPadding = 18;
            ToolTipDuration = 3000;
        }