Esempio n. 1
0
 void HidePopup()
 {
     Control.Text = _editor.Text;
     if (_IMEState != Interop.EFL.InputPanelState.Hide)
     {
         _editor.HideInputPanel();
     }
     else if (_IMEState == Interop.EFL.InputPanelState.Hide)
     {
         _editorPopup.Hide();
     }
 }
Esempio n. 2
0
 void HidePopup()
 {
     if (_IMEState != Interop.EFL.InputPanelState.Hide)
     {
         _editor.HideInputPanel();
     }
     else if (_IMEState == Interop.EFL.InputPanelState.Hide)
     {
         _editorPopup.Hide();
         _editor.TextChanged -= PopupEntryTextChanged;
         _editor.Activated   -= PopupEntryActivated;
     }
 }
        void HidePopup()
        {
            Control.TextChanged -= OnTextChanged;

            if (_IMEState != Interop.EFL.InputPanelState.Hide)
            {
                _editor.HideInputPanel();
            }
            else if (_IMEState == Interop.EFL.InputPanelState.Hide)
            {
                _editorPopup.Hide();
                _editor.TextChanged -= PopupEntryTextChanged;
                _editor.Activated   -= PopupEntryActivated;
            }
            _IsPopupOpened = false;
            ((PopupEntry)Element).IsPopupOpened = false;
        }