private void radPropertyGrid_PropertyValidating(object sender, PropertyValidatingEventArgs e)
{
RadMessageBox.Show("Test"); // Does not work.
// Works: MessageBox.Show("Test");
}
When using RadMessageBox, the message box is shown for an instance and then disappears. This effectively makes it impossible to request confirmation from the user when a value changes, if you don't use the oldschool non-themed MessageBox that is.
We want to use RadMessageBox for obvious reasons. Now what?
{
RadMessageBox.Show("Test"); // Does not work.
// Works: MessageBox.Show("Test");
}
When using RadMessageBox, the message box is shown for an instance and then disappears. This effectively makes it impossible to request confirmation from the user when a value changes, if you don't use the oldschool non-themed MessageBox that is.
We want to use RadMessageBox for obvious reasons. Now what?