MesajBox taki Hangi Tuşa Basıldığını Öğrenmek
Bu makalede mesajbox kutusundaki Evet, Hayır, İptal tuşlarından hangisine basıldığını öğreneceğiz. Aşağıdaki şekilleri inceleyin.
Şekil 1
Şekil 2
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
DialogResult sonuc= MessageBox.Show("Bir tuşa basınız...","Uyarı Mesajı",MessageBoxButtons.YesNoCancel,MessageBoxIcon.Asterisk);
if (sonuc==DialogResult.Yes)
{
MessageBox.Show("EVET tuşuna basıldı");
}
else if (sonuc==DialogResult.No)
{
MessageBox.Show("HAYIR tuşuna basıldı");
}
else if(sonuc==DialogResult.Cancel)
{
MessageBox.Show("IPTAL tuşuna basıldı");
}
}
}
}
//Bir sonraki makalede buluşmak üzere. Bahadır ŞAHİN