目次

コードでイベントにイベントハンドラを追加する

C#でイベントハンドラの追加をコードで実装する方法を紹介します。

概要

コードでイベントハンドラを追加する場合は下記の書式を利用します。
イベント += new イベント型(イベントハンドラ)

コード例

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)
    {
      button1.Click += new EventHandler(button1_Click);
    }

    void button1_Click(object sender, EventArgs e)
    {
      //throw new NotImplementedException();
    }
  }
}
著者
iPentecのメインプログラマー
C#, ASP.NET の開発がメイン、少し前まではDelphiを愛用
掲載日: 2010-08-07
iPentec all rights reserverd.