Unplanned
Last Updated: 30 Mar 2016 09:17 by ADMIN
ADMIN
Anton
Created on: 20 Aug 2013 05:29
Category: Form
Type: Bug Report
0
FIX. RadMessageBox - has incorrect layouts when the message text is formatted with HTML like.
RadMessageBox - has incorrect layouts when the message text is formatted with HTML like.

Workaround:

RadMessageBox.Show("Text");
RadMessageBox.Instance.Dispose();

If you are using themes, consider the following approach:
            RadMessageBox.SetThemeName("Windows7");
            RadMessageBox.Show("This is some long text that sometimes does not wrap as it should.");
            var field = typeof(RadMessageBox).GetField("radMessageBoxForm", BindingFlags.NonPublic | BindingFlags.Static);
            field.SetValue(null, null);
0 comments