c# 事件示例

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using System.IO;

/// <summary>
/// 自定义缩略图控件
/// </summary>
public  class ctlPictureBox
{
    public delegate void PicClickHandler(object sender, PictureArgs e);
    /// <summary>
    /// 定义单击事件
    /// </summary>
    public event PicClickHandler PicClick;

    protected virtual void OnPictureClick(PictureArgs e)
    {//事件触发方法
        if (PicClick != null)
        {//判断事件是否为空
            PicClick(this, e);//触发事件
        }
    }
  //激发事件
    private void pbImg_Click(object sender, EventArgs e)
    {
        PictureArgs args = new PictureArgs();
        args.FileName = fileName;
        OnPictureClick(args);
    }

}

   
public class PictureArgs : EventArgs
{
    private string filename = "";
    /// <summary>
    /// 文件名称
    /// </summary>
    public string FileName
    {
        get { return filename; }
        set { filename = value; }
    }
}

   

 

示例2

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace test
{
 public partial class MyControl: UserControl
 {
  public MyControl()
  {
   InitializeComponent();
  }

        public delegate int MyDelegate(string str);

        public MyDelegate ClickHandler = null;


        private void button1_Click(object sender, EventArgs e)
        {
            if (ClickHandler != null)
            {
                ClickHandler("hello");
            }
        }
 }
}

 

调用方法

public int Test(string str)
        {
            MessageBox.Show(str);
            return 1;
        }

        public int Test1(string str)
        {
            MessageBox.Show(str +"," + str);
            return 1;
        }


        private void Form1_Load(object sender, EventArgs e)
        {
            myControl1.ClickHandler += Test;
            myControl1.ClickHandler += Test1;
         
          //  myControl1.ClickHandler -= Test1;
        }

 

 

 

转载于:https://www.cnblogs.com/yg_zhang/archive/2010/06/24/1764731.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值