To reproduce:
- Start the narrator, open a message box and close it fast.
Workaround:
void button_Click(object sender, EventArgs e)
{
RadMessageBox.Instance.Shown += Instance_Shown;
RadMessageBox.Show("test");
}
void Instance_Shown(object sender, EventArgs e)
{
RadMessageBoxForm form = sender as RadMessageBoxForm;
typeof(RadMessageBoxForm).GetField("accObjectCreated", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance).SetValue(form, false);
}