Answers for "alert message in c# windows application"

C#
1

alert message in c# windows application

string message = "Simple MessageBox";  
MessageBox.Show(message);
Posted by: Guest on September-20-2021
1

alert message in c# windows application

string message = "Do you want to abort this operation?";  
string title = "Close Window";  
MessageBoxButtons buttons = MessageBoxButtons.AbortRetryIgnore;  
DialogResult result = MessageBox.Show(message, title, buttons, MessageBoxIcon.Warning);  
if (result == DialogResult.Abort) {  
    this.Close();  
}  
elseif(result == DialogResult.Retry) {  
    // Do nothing  
}  
else {  
    // Do something  
}
Posted by: Guest on September-20-2021
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
0

alert message in c# windows application

string message = "Simple MessageBox";  
string title = "Title";  
MessageBox.Show(message, title);
Posted by: Guest on September-20-2021

C# Answers by Framework

Browse Popular Code Answers by Language