LayoutFarm.SuggestionWindowMx.Hide C# (CSharp) Method

Hide() public method

public Hide ( ) : void
return void
        public void Hide()
        {
            this.floatWindow.Visible = false;
        }
        public void Show()

Usage Example

Esempio n. 1
0
 void sgBox_UserConfirmSelectedItem(object sender, EventArgs e)
 {
     if (_textbox.CurrentTextSpan != null)
     {
         _textbox.ReplaceCurrentTextRunContent(_currentLocalText.Length,
                                               (string)_sgBox.GetItem(_sgBox.SelectedIndex).Tag);
         //-------------------------------------
         //then hide suggestion list
         _sgBox.ClearItems();
         _sgBox.Hide();
         //--------------------------------------
     }
 }
All Usage Examples Of LayoutFarm.SuggestionWindowMx::Hide