private void HideContentEditor()
 {
     EditorPopup.IsOpen   = false;
     ContentEditor.Accept = ContentEditor.Reject = null;
     _flexChart.Invalidate();
     _flexChart.Focus();
 }
Example #2
0
        private void HideContentEditor()
        {
            if (EditorPopup.IsOpen)
            {
                EditorPopup.IsOpen = false;
            }

            ContentEditor.Accept = ContentEditor.Reject = null;
            _flexChart.Invalidate();
            _flexChart.Focus(FocusState.Pointer);
        }