⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.cs

📁 C#高级编程第6版随书源代码 值得下载
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -