MessageBoxAdv + Metro style Ok button text corrupted

Try this:
...
MessageBoxAdv.MessageBoxStyle = MessageBoxAdv.Style.Metro;
MessageBoxAdv.MessageBoxStyle=MessageBoxAdv.Style.Metro;
MessageBoxAdv.MetroColorTable.NoButtonBackColor = Color.FromArgb(22, 165, 220);
MessageBoxAdv.MetroColorTable.YesButtonBackColor = Color.FromArgb(22, 165, 220);
MessageBoxAdv.MetroColorTable.CancelButtonBackColor = Color.FromArgb(22, 165, 220);
MessageBoxAdv.MetroColorTable.BackColor = Color.White;
MessageBoxAdv.MetroColorTable.BorderColor = Color.FromArgb(22, 165, 220);
MessageBoxAdv.MetroColorTable.CaptionBarColor = Color.FromArgb(22, 165, 220);
MessageBoxAdv.MetroColorTable.CaptionForeColor = Color.Black;
MessageBoxAdv.MetroColorTable.ForeColor = Color.Black;

MessageBoxAdv.Show(MainFormHandle,"Error message", "Error Title", MessageBoxButtons.OK, MessageBoxIcon.Error);
....
The message box is shown with Ok button text missing or corrupted.

1 Reply

ST Saravanan T Syncfusion Team April 28, 2015 05:37 AM UTC

Hi Gian,

Thank you for using Syncfusion products.

This reported behavior is known issue and it has been fixed. And a support incident has been created under your account to track the status of this requirement. Please log on to our support website to check for further updates.

https://www.syncfusion.com/account/login?ReturnUrl=/support/directtrac/incidents

Please let us know if you need any further assistance.

Thanks,
Saravanan T

Loader.
Up arrow icon