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);