Completed
Last Updated: 09 Mar 2020 14:29 by ADMIN
Release R2 2020 (LIB 2020.1.316)
Larry
Created on: 14 Feb 2020 13:54
Category: UI for WinForms
Type: Bug Report
0
RadRichTextEditor: SelectionMiniToolBar is not closed after navigating to another RadPageViewPage

Please refer to the attached sample project and follow the steps illustrated in the provided gif file.

Workaround:

        public RadForm1()
        {
            InitializeComponent();

            this.radPageView1.SelectedPageChanged += radPageView1_SelectedPageChanged;
        }

        private void radPageView1_SelectedPageChanged(object sender, EventArgs e)
        {
            if (this.radPageView1.SelectedPage != this.radPageViewPage1)
            {
                SelectionMiniToolBar selectionMiniToolBar = this.radRichTextEditor1.RichTextBoxElement.SelectionMiniToolBar as SelectionMiniToolBar;
                if (selectionMiniToolBar != null)
                {
                    selectionMiniToolBar.Hide();
                }
            }
        }

0 comments