Completed
Last Updated: 24 Jul 2014 07:40 by ADMIN
ADMIN
Anton
Created on: 13 May 2013 06:03
Category: Form
Type: Bug Report
0
Fix. RadMessageBox - SetThemeName method is not working correctly, after dispose on owner form.
RadMessageBox - SetThemeName method is not working correctly, after dispose on owner form.

Workaround - Reset the radMessageBoxForm field via reflection. For example:

            var field = typeof(RadMessageBox).GetField("radMessageBoxForm", BindingFlags.NonPublic | BindingFlags.Static);
            field.SetValue(null, null);

            RadMessageBox.SetThemeName("Office2007Black");
0 comments