Winform 自定义控件, 自定义事件

Winform 自定义控件, 自定义事件
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApp3
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void myUserControl_UserControlBtnClicked(object sender, EventArgs e)
        {
            MessageBox.Show("用户点击");
        }
    }

    /// <summary>
    /// 自定义控件
    /// </summary>
    public partial class MyUserControl : UserControl
    {
        // 定义委托
        public delegate void BtnClickHandle(object sender, EventArgs e);
        // 定义事件
        public event BtnClickHandle UserControlBtnClicked;

        private void UserControl1_Click(object sender, EventArgs e)
        {
            if (UserControlBtnClicked != null)
                UserControlBtnClicked(sender, new EventArgs());//把按钮自身作为参数传递
        }
    }
}

作者最新文章
C# 使用 CSVHelper 操作 csv 文件, .net core, .net framework 读取写入 csv 文件
C# 实现字符串文本换行的方法,文本如何换行
C# 如何循环读取文件每一行文本内容
C# DateTime AddMonths 的错误用法导致跳过日期
C# 全角转换半角,半角转换为全角