Sep 26, 2018

MessageBox text with icon in C#

MessageBox.Show("Test with error icon", "MessageBox Title",
    MessageBoxButtons.OK, MessageBoxIcon.Error);

MessageBox.Show("Test with warning icon", "MessageBox Title",
    MessageBoxButtons.OK, MessageBoxIcon.Warning);

No comments:

Post a Comment