Articles in this section
Category / Section

How to configure custom buttons in WinForms MessageBoxAdv?

1 min read

Configure custom buttons

MessageBoxAdv has support for set of built-in button combinations and it also has support to configure own set of custom Buttons combination based on application requirement. For example, Here, we are configuring the button combination Okay, Cancel and Help.

C#

// Defining custom buttons
string[] CustomButtons = new string[] { "Okay", "Cancel", "Help" };
// To retrieve clicked button index
int clickedIndex = MessageBoxAdv.Show(this, "Custom Buttons", "Custom Button combination", CustomButtons) - 1;
// Displaying clicked button information
if (clickedIndex < CustomButtons.Length)
{
    MessageBox.Show("Selected : " + CustomButtons[clickedIndex].ToString());
}

VB

' Defining custom buttons
Dim CustomButtons() As String = { "Okay", "Cancel", "Help" }
' To retrieve clicked button index
Dim clickedIndex As Integer = MessageBoxAdv.Show(Me, "Custom Buttons", "Custom Button combination", CustomButtons) - 1
' Displaying clicked button information
If clickedIndex < CustomButtons.Length Then
    MessageBox.Show("Selected : " & CustomButtons(clickedIndex).ToString())
End If

Sample: Example 

Reference link: https://help.syncfusion.com/windowsforms/messagebox/button-parameters#buttons

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