This is a migrated thread and some comments may be shown as answers.

RadRichTextBox Paste Options remains on top of the other windows

2 Answers 168 Views
RichTextBox
This is a migrated thread and some comments may be shown as answers.
Arsen
Top achievements
Rank 1
Veteran
Arsen asked on 23 Oct 2020, 11:00 AM

When pasting formatted text to RadRichTextBox the Paste Options popup appears, allowing you to choose if you want to keep formatting/style or not.

 

That part is fine.

 

However...

When I'm opening the Past Options (clicking on Ctrl dropdown) and after open some other applications over RichTextBox, I see that the Past Options popup remains on top of it.

Is there any property like ShouldCloseFilteringPopupOnKeyboardFocusChanged, which I can use to close Past Options when the focus changed to another window?

---

 

From the image it's visible that Past Options popup (WPF) is appearing over browser page.

2 Answers, 1 is accepted

Sort by
0
Dimitar
Telerik team
answered on 27 Oct 2020, 06:42 AM

Hi Arsen,

I was able to reproduce this and I have logged the issue on our feedback portal. You can track its progress, subscribe to status changes, and add your comment to it here: RichTextBox: The paste options popup stays visible when the window is deactivated.

I have updated your Telerik points as well. 

To work around this you can use the deactivated event and close the popup:

private void MainWindow_Deactivated(object sender, EventArgs e)
{
    var popup = radRichTextBox.PasteOptionsPopup as PasteOptionsPopup;
    popup.Close();
}
Should you have any other questions do not hesitate to ask.

Regards,
Dimitar
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

0
Arsen
Top achievements
Rank 1
Veteran
answered on 29 Oct 2020, 09:53 AM

Hi Dimitar,

Thanks a lot for your reply.

You are correct, that's exact workaround that I've already used in application.

My, question was about some existing property which I could use instead, but know I see that it's a control bug.

That's what I wanted to hear :) 

I will wait for the updates.

 

Thank you,

Arsen

Tags
RichTextBox
Asked by
Arsen
Top achievements
Rank 1
Veteran
Answers by
Dimitar
Telerik team
Arsen
Top achievements
Rank 1
Veteran
Share this question
or