Structure:
How to reproduce:
Result:
the menu will be repainted over the dialogform
Using the Fluent theme.
Sometimes the popped up menu is just plain white, sometimes its painted correctly (showing buttons) but always over the DialogForm.
thanks
The workaround didn't work for a specific button. The button open's a third party software (.exe)
I tried calling a Refresh, also an Application.DoEvents but nothing is working. The other application is doing a file or folder browser dialog.
private void radButtonConvert_Click(object sender, EventArgs e)
I have also updated your Telerik points.
Feel free to use the previously suggested solution.private
void
radButtonElement1_Click(
object
sender, EventArgs e)
{
this
.radRibbonBar1.RibbonBarElement.Popup.ClosePopup(Telerik.WinControls.UI.RadPopupCloseReason.Mouse);
new
OpenFileDialog().ShowDialog();
}