C#-—单击按钮可以弹出对话框

来源:互联网 发布:浙江省定额计价软件 编辑:程序博客网 时间:2024/05/18 01:31
/**烟台大学计算机学院学生                   *All right reserved.                   *文件名称:C#-—单击按钮可以弹出对话框 *作者:杨飞                   *完成日期:2014年9月2日                   *版本号:v1.0                   *对任务及求解方法的描述部分:C#-—单击按钮可以弹出对话框*我的程序:*/using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace WindowsFormsApplication3{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        private void button2_Click(object sender, EventArgs e)        {            if (DialogResult.Yes == MessageBox.Show("确认结束吗【Y/N】", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1         ))            {                Application.Exit();            }        }                private void button1_Click(object sender, EventArgs e)        {            if(DialogResult.Yes==MessageBox.Show("确认结束吗【Y/N】","提示",MessageBoxButtons.YesNo,MessageBoxIcon.Warning,MessageBoxDefaultButton.Button1         ))            {                Application.Exit();            }        }        private void button1_KeyDown(object sender, KeyEventArgs e)        {            if (e.Alt && e.KeyCode == Keys.B)            {                if (DialogResult.Yes == MessageBox.Show("确认结束吗【Y/N】", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1             ))                {                    Application.Exit();                }            }        }    }}

运行结果:

心得体会:呵呵

0 0
原创粉丝点击