Answers for "message box c# win forms"

C#
33

c# MessageBox

MessageBox.Show("text", "title", MessageBoxButtons.OK, MessageBoxIcon.Warning);
Posted by: Guest on March-02-2020
1

alert message in c# windows application

string message = "Do you want to close this window?";  
string title = "Close Window";  
MessageBoxButtons buttons = MessageBoxButtons.YesNo;  
DialogResult result = MessageBox.Show(message, title, buttons);  
if (result == DialogResult.Yes) {  
    this.Close();  
} else {  
    // Do something  
}
Posted by: Guest on September-20-2021

C# Answers by Framework

Browse Popular Code Answers by Language