Unplanned
Last Updated: 27 Oct 2020 06:38 by ADMIN
Dimitar
Created on: 27 Oct 2020 06:26
Category: RichTextBox
Type: Bug Report
0
RichTextBox: The paste options popup stays visible when the window is deactivated

The paste options popup stays visible when the window is deactivated

Workaround: 

private void MainWindow_Deactivated(object sender, EventArgs e)
{
    var popup = radRichTextBox.PasteOptionsPopup as PasteOptionsPopup;
    popup.Close();
}
Attached Files:
0 comments