form1.cs
来自「C#高级编程第6版随书源代码 值得下载」· CS 代码 · 共 50 行
CS
50 行
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
//button1.Click += new EventHandler(button1_Click);
//button1.Click += new EventHandler(OnButtonClick);
buttonOne.Click += (sender, e) => labelInfo.Text = "Button One was pressed";
// delegate { labelInfo.Text = "Button One was pressed"; };
buttonTwo.Click += delegate{labelInfo.Text = "Button Two was pressed";};
buttonTwo.Click += delegate
{
MessageBox.Show
("This only happens in Button 2 click event");
};
}
void button1_Click(object sender, EventArgs e)
{
throw new Exception("The method or operation is not implemented.");
}
void OnButtonClick(object sender, EventArgs e)
{
throw new Exception("The method or operation is not implemented.");
}
private void button2_Click(object sender, EventArgs e)
{
}
private void buttonOne_Click(object sender, EventArgs e)
{
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?