Merhabalar arkadaşlar bu yazımda messagebox işlemlerinden bahsedeceğim. Öncelikle buton işlemlerini yazacağım
DURDUR YENİDENDENE İPTAL BUTONLARI
MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.AbortRetryIgnore);
TAMAM BUTONU İÇİN
MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.OK);
TAMAM İPTAL BUTONLARI
MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.OKCancel);
EVET HAYIR BUTONLARI
MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.YesNo);
EVET HAYIR İPTAL BUTONLARI
MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.YesNoCancel);
İCON KULLANIMIDA AYNI ŞEKİLDE OLDUĞU İÇİN SADECE HATA İKONUNU ÖRNEK VERMEK İSTİYORUM
MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Error);
SON OLARAK İSE EVET HAYIR VE İPTAL BUTONLARI İÇİN BUTONA BASMA İŞLEMLERİNİ YAZACAĞIM
EVET BUTONUNA BASILDIĞINDA
DialogResult SEÇİM= MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Error);
if (SEÇİM == DialogResult.Yes)
{
/* YAPILACAK İŞLEM BLOĞU */
}
HAYIR BUTONUNA BASILDIĞINDA
DialogResult SEÇİM= MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Error);
if (SEÇİM == DialogResult.No)
{
/* YAPILACAK İŞLEM BLOĞU */
}
İPTAL BUTONUNA BASILDIĞINDA
DialogResult SEÇİM= MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Error);
if (SEÇİM == DialogResult.Cancel)
{
/* YAPILACAK İŞLEM BLOĞU */
}
Bu yazımı burada sonlandırıyorum. Diğer yazılarımda görüşmek üzere...
DURDUR YENİDENDENE İPTAL BUTONLARI
MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.AbortRetryIgnore);
TAMAM BUTONU İÇİN
MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.OK);
TAMAM İPTAL BUTONLARI
MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.OKCancel);
EVET HAYIR BUTONLARI
MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.YesNo);
EVET HAYIR İPTAL BUTONLARI
MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.YesNoCancel);
İCON KULLANIMIDA AYNI ŞEKİLDE OLDUĞU İÇİN SADECE HATA İKONUNU ÖRNEK VERMEK İSTİYORUM
MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Error);
SON OLARAK İSE EVET HAYIR VE İPTAL BUTONLARI İÇİN BUTONA BASMA İŞLEMLERİNİ YAZACAĞIM
EVET BUTONUNA BASILDIĞINDA
DialogResult SEÇİM= MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Error);
if (SEÇİM == DialogResult.Yes)
{
/* YAPILACAK İŞLEM BLOĞU */
}
HAYIR BUTONUNA BASILDIĞINDA
DialogResult SEÇİM= MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Error);
if (SEÇİM == DialogResult.No)
{
/* YAPILACAK İŞLEM BLOĞU */
}
İPTAL BUTONUNA BASILDIĞINDA
DialogResult SEÇİM= MessageBox.Show("MESSAGEBOX İÇERİĞİ", "BAŞLIK", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Error);
if (SEÇİM == DialogResult.Cancel)
{
/* YAPILACAK İŞLEM BLOĞU */
}
Bu yazımı burada sonlandırıyorum. Diğer yazılarımda görüşmek üzere...
Yorumlar
Yorum Gönder