这里的自定义控件是由普通控件组合而成的。
希望事件响应代码推迟到使用自定义控件的窗体里写。
步骤一:新建一个用户控件,放两个按钮,Tag分别是btn1,btn2.
这两个按钮的共用单击事件处理代码如下:


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 UcDll
{
    public partial class UcTest : UserControl
    {
        public UcTest()
        {
            InitializeComponent();
        }         //定义委托
        public delegate void BtnClickHandle(object sender, EventArgs e);
        //定义事件
        public event BtnClickHandle UserControlBtnClicked;
        private void btn_Click(object sender, EventArgs e)
        {
            if (UserControlBtnClicked != null)
                UserControlBtnClicked(sender, new EventArgs());//把按钮自身作为参数传递
        }
    }
}
步骤二:当用户拖一个自定义控件在窗体的时候,
在事件里可以找到UserControlBtnClicked事件。

private void ucTest1_UserControlBtnClicked(object sender, EventArgs e)
{
    Button btn = sender as Button;
    MessageBox.Show(btn.Tag.ToString());
}
这个操作很有用。
url:http://greatverve.cnblogs.com/archive/2012/02/15/csharp-usercontrol-event.html

c# 自定义控件如何在属性栏添加自定义事件?可以双击生成+=代码?

用户控件的实现比较简单,直接从System.Windows.Forms.UserControl继承。

public class UserControl1 : System.Windows.Forms.UserControl

为了便于测试我在上面添加了一个TextBox,并注册TextBox的TextChanged事件,

this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);

事件处理函数,

private void textBox1_TextChanged(object sender, System.EventArgs e)

{

MessageBox.Show(this.textBox1.Text);

}

这里演示如果控件中文本框的内容改变就会用MessageBox显示当前的文本框内容。

窗体中添加上面的用户控件,当我们改变textBox的文本时,可以看到跳出一个对话框,很简单吧。

下面来看看对控件添加属性。
这里定义一个私有变量。
private string customValue;
添加访问他的属性
public string CustomValue
{
    get{return customValue;}
    set{customValue =value;}
}
在窗体中使用的时候像普通控件一样进行访问,
userControl11.CustomValue = "用户控件自定义数据";
通过事件可以传递消息到窗体上,在定义之前我们先来写一个简单的参数类。
public class TextChangeEventArgs : EventArgs
{
    private string message;
    public TextChangeEventArgs(string message)
    {
        this.message = message;
    }
public string Message
    {
        get{return message;}
    }
}
定义委托为,
public delegate void TextBoxChangedHandle(object sender,TextChangeEventArgs e);
接下去在用户控件中添加事件,
//定义事件
public event TextBoxChangedHandle UserControlValueChanged;
为了激发用户控件的新增事件,修改了一下代码,
private void textBox1_TextChanged(object sender, System.EventArgs e)
{
    if(UserControlValueChanged != null)
        UserControlValueChanged(this,new TextChangeEventArgs(this.textBox1.Text));
           
}
好了,为了便于在Csdn上回答问题,把完整的代码贴了出来:
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Windows.Forms;
 
namespace ZZ.WindowsApplication1
{
    public class UserControl1 : System.Windows.Forms.UserControl
    {
        private System.Windows.Forms.TextBox textBox1;
        private string customValue;
       
private System.ComponentModel.Container components = null;
 
        public string CustomValue
        {
            get{return customValue;}
            set{customValue =value;}
        }
 
        //定义事件
        public event TextBoxChangedHandle UserControlValueChanged;
 
        public UserControl1()
        {
            InitializeComponent();
        }
 
        protected override void Dispose( bool disposing )
        {
            if( disposing )
            {
                if(components != null)
                {
                    components.Dispose();
                }
            }
            base.Dispose( disposing );
        }
 
        #region组件设计器生成的代码
        private void InitializeComponent()
        {
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.SuspendLayout();
            this.textBox1.Location = new System.Drawing.Point(12, 36);
            this.textBox1.Name = "textBox1";
            this.textBox1.TabIndex = 0;
            this.textBox1.Text = "textBox1";
            this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
            this.Controls.Add(this.textBox1);
            this.Name = "UserControl1";
            this.Size = new System.Drawing.Size(150, 92);
            this.ResumeLayout(false);
 
        }
        #endregion
 
        private void textBox1_TextChanged(object sender, System.EventArgs e)
        {
            if(UserControlValueChanged != null)
                UserControlValueChanged(this,new TextChangeEventArgs(this.textBox1.Text));
           
        }
    }
    //定义委托
    public delegate void TextBoxChangedHandle(object sender,TextChangeEventArgs e);
 
    public class TextChangeEventArgs : EventArgs
    {
        private string message;
        public TextChangeEventArgs(string message)
        {
            this.message = message;
        }
        public string Message
        {
            get{return message;}
        }
    }
}
使用时要在窗体中注册上面的事件,比较简单都贴源代码了,
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
 
namespace ZZ.WindowsApplication1
{
    public class Form1 : System.Windows.Forms.Form
    {
        private WindowsApplication1.UserControl1 userControl11;
        private System.ComponentModel.Container components = null;
 
        public Form1()
        {
            InitializeComponent();
            userControl11.CustomValue = "用户控件自定义数据";
            userControl11.UserControlValueChanged += newTextBoxChangedHandle(userControl11_UserControlValueChanged);
        }
 
        protected override void Dispose( bool disposing )
        {
            if( disposing )
            {
                if (components != null)
                {
                    components.Dispose();
                }
            }
            base.Dispose( disposing );
        }
 
        #region Windows 窗体设计器生成的代码
        private void InitializeComponent()
        {
            this.userControl11 = new WindowsApplication1.UserControl1();
            this.SuspendLayout();
            this.userControl11.Location = new System.Drawing.Point(8, 8);
            this.userControl11.Name = "userControl11";
            this.userControl11.Size = new System.Drawing.Size(150, 84);
            this.userControl11.TabIndex = 0;
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
            this.ClientSize = new System.Drawing.Size(292, 193);
            this.Controls.Add(this.userControl11);
            this.Name = "Form1";
            this.Text = "Form1";
            this.ResumeLayout(false);
 
        }
        #endregion
 
         [STAThread]
        static void Main()
        {
            Application.Run(new Form1());
        }
 
        private void userControl11_UserControlValueChanged(object sender, TextChangeEventArgs e)
        {
            MessageBox.Show("当前控件的值为:" + e.Message);
        }
    }
}
另外需要动态加载,就把控件添加在容器的Controls集合就行了,下面是在构造函数中添加控件,
public Form1()
{
    InitializeComponent();
    UserControl1 uc = new UserControl1();
    uc.CustomValue = "动态加载的用户控件";
    uc.UserControlValueChanged += new TextBoxChangedHandle(userControl11_UserControlValueChanged);
    this.Controls.Add(uc);
}
另外从VS.net中的工具箱中拖动用户控件到窗体上,如果是第一次需要编译一下项目。
 
//如果我有一个写好的控件,想在Form中使用如何???????
在控件中:  
        public delegate void OnSubBureauSelectChanged();//定义委托
        public event OnSubBureauSelectChanged onSubBureauSelectChanged;//定义事件
//以下代码放在你要用在窗体中调用的事件中,可以是控件中有的也可以自己写的
 if ( ( subBureaus.Count > 0 ) && ( onSubBureauSelectChanged != null ) )
                onSubBureauSelectChanged ();
//以下写在窗体构造中
searchPanel.onSubBureauSelectChanged += new SearchPanel.OnSubBureauSelectChanged ( OnSubBureauSelectChanged );
//以下再写一个自己写的事件
 private void OnSubBureauSelectChanged ( )
        {这样就可以了}

为C#自定义控件添加自定义事件的更多相关文章

  1. android 自定义控件之事件

    首先,继承需要扩展的VIEW,然后在里面添加一个自己的事件方法,例如, oniconclick(myinterface pinterface){ minterface = pinterface; } ...

  2. mfc添加自定义事件

    1.在对话框的头文件里面添加声明函数: afx_msg void OnStnClickedPicStop(); 2.在对话框的源文件添加 BEGIN_MESSAGE_MAP(CPcEn3dTestDl ...

  3. react 为元素添加自定义事件监听器

    https://zhenyong.github.io/react/tips/dom-event-listeners.html class MovieItem extends React.Compone ...

  4. Winform下让你的DataGridView控件支持点语法(即显示list中的子对象属性)

    前言: 不想看前言的直接去看正文吧!另外文末有彩蛋. DataGridView可以支持多种数据源格式,比如DataTable和List. DataTable没啥特殊的,本身就是一张二维的表,可以和Da ...

  5. C#中的自定义控件中的属性、事件及一些相关特性的总结(转)

      摘要: C#中的自定义控件中的属性(Property).事件(Event)及一些相关特性(Attribute)的总结 今天学习了下C#用户控件开发添加自定义属性的事件,主要参考了MSDN,总结并实 ...

  6. angularjs1 实现地图添加自定义控件(搜索功能)及事件

    // 添加地图自定义控件的事件 function addEventHandler(target, eventName, handler) { if (target.addEventListener) ...

  7. ASP.NET自定义控件组件开发 第三章 为控件添加事件 后篇

    原文:ASP.NET自定义控件组件开发 第三章 为控件添加事件 后篇 第三章 为控件添加事件 后篇 前一篇文章只是简单的说了下事件,但是大家应该方法,在ASP.NET自定义控件中只是简单那么定义事件是 ...

  8. WPF 创建自定义控件及自定义事件

    1 创建自定义控件及自定义事件 /// <summary> /// 演示用的自定义控件 /// </summary> public class ExtButton : Butt ...

  9. wpf自定义控件中使用自定义事件

    wpf自定义控件中使用自定义事件 1 创建自定义控件及自定义事件 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 ...

随机推荐

  1. es6学习笔记2-解构赋值

    解构赋值基本概论就按照一定的模式通过数组或者对象对一组变量进行赋值的过程. 1.通过数组对变量进行赋值: /*通过这种方式赋值要注意左右两边的结构模式要一样,在赋值的时候,根据位置进行赋值对应模式.* ...

  2. java发送email

    package com.assess.util; import java.io.File; import java.util.ArrayList; import java.util.List; imp ...

  3. sicily 中缀表达式转后缀表达式

    题目描述 将中缀表达式(infix expression)转换为后缀表达式(postfix expression).假设中缀表达式中的操作数均以单个英文字母表示,且其中只包含左括号'(',右括号‘)’ ...

  4. 在MySQL中出现Unknown column 'abc' in 'field list'怎么解决?

    update TABLE1 set NAME = '?' where  ID  ='?' 参数字段需要添引号.

  5. MySQL数据类型-decimal详解

    from:http://www.linuxidc.com/Linux/2013-07/88032.htm 1.首先,对于精度比较高的东西,比如money,我会用decimal类型,不会考虑float, ...

  6. Java实现数组排序

    package com.souvc.hibernate.exp; public class MySort { /** * 方法名:main</br> * 详述:Java实现数组排序 < ...

  7. Python-04-基础

    一.装饰器(decorator) 装饰器本质上也是函数,目的是为其他函数添加附加功能(装饰其他函数) Python通过使用装饰器来达到代码的开放与封闭. 原则: 不能修改被装饰函数的源代码. 不能修改 ...

  8. Python-03-基础

    一.集合 集合(set)是一个无序的.不重复的元素组合,它的主要作用如下: 去重:把一个列表变成集合,就会自动去重. 关系测试:测试两组数据之前的交集.差集.并集等关系. 常用操作 # 创建数值集合 ...

  9. ajax返回值中有回车换行、空格的解决方法分享

    最近在写一个页面,用jquery ajax来实现判断,刚写好测试完全没有问题,过了两天发现出现问题,判断不成了.后来发现所有alert出来的返回值前面都会加若干换行和空格.(至今不明白,同一台电脑,同 ...

  10. Caliburn.Micro学习笔记(三)----事件聚合IEventAggregator和 Ihandle<T>

    Caliburn.Micro学习笔记目录 今天 说一下Caliburn.Micro的IEventAggregator和IHandle<T>分成两篇去讲这一篇写一个简单的例子 看一它的的实现 ...