Yanıtlar:
Bunu yapmalı:
DialogResult dialogResult = MessageBox.Show("Sure", "Some Title", MessageBoxButtons.YesNo);
if(dialogResult == DialogResult.Yes)
{
//do something
}
else if (dialogResult == DialogResult.No)
{
//do something else
}
DialogResult dr = MessageBox.Show("Are you happy now?",
"Mood Test", MessageBoxButtons.YesNo);
switch(dr)
{
case DialogResult.Yes:
break;
case DialogResult.No:
break;
}
MessageBox sınıfı aradığınız şeydir.
MessageBox.Show(title, text, messageboxbuttons.yes/no)
Bu, kontrol edebileceğiniz bir DialogResult döndürür.
Örneğin,
if(MessageBox.Show("","",MessageBoxButtons.YesNo) == DialogResult.Yes)
{
//do something
}
MessageBox gelmez bir DialogResults üretmek
DialogResult r = MessageBox.Show("Some question here");
Ayrıca düğmeleri yeterince kolayca belirleyebilirsiniz. Daha fazla belge http://msdn.microsoft.com/en-us/library/ba2a6d06.aspx adresinde bulunabilir.
kullanın:
MessageBoxResult m = MessageBox.Show("The file will be saved here.", "File Save", MessageBoxButton.OKCancel);
if(m == m.Yes)
{
// Do something
}
else if (m == m.No)
{
// Do something else
}
MessageBoxResult, Windows Phone'da DialogResult yerine kullanılır ...
Bu değişkeni metin dizeleriyle de kullanabilirsiniz, C # 2012'de test edilen tüm değiştirilmiş kod (Mikael Kodu):
// Variable
string MessageBoxTitle = "Some Title";
string MessageBoxContent = "Sure";
DialogResult dialogResult = MessageBox.Show(MessageBoxContent, MessageBoxTitle, MessageBoxButtons.YesNo);
if(dialogResult == DialogResult.Yes)
{
//do something
}
else if (dialogResult == DialogResult.No)
{
//do something else
}
Sonra yapabilirsin
.YesNo
mesaj simgesi ekle
, MessageBoxIcon.Question
@Mikael Svenson'ın cevabı doğru. Sadece küçük bir ek eklemek istedim:
Mesaj kutusu simgesi aşağıdaki gibi ek bir özelliğe de eklenebilir:
DialogResult dialogResult = MessageBox.Show("Sure", "Please Confirm Your Action", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (MessageBox.Show("Please confirm before proceed" + "\n" + "Do you want to Continue ?", "Confirm", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
//do something if YES
}
else
{
//do something if NO
}
Bu basit kod benim için çalıştı. Burada MSDN'den yakaladım:
if (System.Windows.Forms.MessageBox.Show
("Are you sure you want to add the audit?", "Add",
System.Windows.Forms.MessageBoxButtons.YesNo,
System.Windows.Forms.MessageBoxIcon.Question)
==System.Windows.Forms.DialogResult.Yes)
// Do stuff after 'YES is clicked'
else
// DO stuff after 'NO is clicked'