Articles in this section
Category / Section

What is the WinForms MessageBoxAdv?

1 min read

MessageBoxAdv

The MessageBoxAdv is the control that can be used to display any messages as like .NET MessageBox. MessageBoxAdv supports standard color schemes and custom color schemes in Office 2007 style. Custom Icons support is also included in MessageBoxAdv. To display Message Box, we need to invoke MessageBoxAdv.Show() method.

C#

if (this.comboBoxAdv1.Enabled)
{
    MessageBoxAdv.Show("MessageBoxAdv with Default Icon.", "MessageBoxAdv " +   MessageBoxAdv.Office2007Theme.ToString() + "Color Scheme", MessageBoxButtons.OK,  (MessageBoxIcon)Enum.Parse(typeof(MessageBoxIcon), this.comboBoxAdv1.SelectedItem.ToString(), true));
}

 

VB

If Me.comboBoxAdv1.Enabled Then
    MessageBoxAdv.Show("MessageBoxAdv with Default Icon.", "MessageBoxAdV " & MessageBoxAdv.Office2007Theme.ToString() & "Color Scheme", MessageBoxButtons.OK, CType(System.Enum.Parse(GetType(MessageBoxIcon), Me.comboBoxAdv1.SelectedItem.ToString(), True), MessageBoxIcon))
End If

Reference link: https://help.syncfusion.com/windowsforms/messagebox/styles-settings

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied