FastColoredTextBoxNS.AutocompleteMenu.Close C# (CSharp) Method

Close() public method

public Close ( ) : void
return void
        public new void Close()
        {
            listView.toolTip.Hide(listView);
            base.Close();
        }

Usage Example

        internal AutocompleteListView(AutocompleteMenu menu, FastColoredTextBox tb, Form parent)
        {
            Menu = menu;
            AutocompleteParent = parent;
            SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer | ControlStyles.UserPaint, true);
            base.Font    = new Font(FontFamily.GenericSansSerif, 9);
            visibleItems = new List <AutocompleteItem>();
            VerticalScroll.SmallChange = ItemHeight;
            MaximumSize        = new Size(Size.Width, 180);
            toolTip.ShowAlways = false;
            AppearInterval     = 200;
            timer.Tick        += new EventHandler(timer_Tick);
            SelectedColor      = Color.Orange;
            HoveredColor       = Color.Red;
            ToolTipDuration    = 30000;

            this.tb = tb;

            tb.KeyDown          += new KeyEventHandler(tb_KeyDown);
            tb.SelectionChanged += new EventHandler(tb_SelectionChanged);
            tb.KeyPressed       += new KeyPressEventHandler(tb_KeyPressed);

            Form form = tb.FindForm();

            if (form != null)
            {
                form.LocationChanged += (o, e) => Menu.Close();
                form.ResizeBegin     += (o, e) => Menu.Close();
                form.FormClosing     += (o, e) => Menu.Close();
                form.LostFocus       += (o, e) => Menu.Close();
            }

            tb.LostFocus += (o, e) =>
            {
                if (!Menu.Focused)
                {
                    Menu.Close();
                }
            };

            tb.Scroll += (o, e) => Menu.Close();

            this.VisibleChanged += (o, e) =>
            {
                if (this.Visible)
                {
                    DoSelectedVisible();
                }
            };
        }