来源:l
//按钮事件
private void btn_Click(object sender, EventArgs e)
{}
//自己的函数
private void myFunc()
{
//程序中其他地方调用按钮事件btn_Click(this, new EventArgs());//这样传sender和e参数就可以,this代表当前程序所在的control,new EventArgs()代表初始化EventArgs类的一个新实例
}
本文共 279 字,大约阅读时间需要 1 分钟。
来源:l
//按钮事件
private void btn_Click(object sender, EventArgs e)
{}
//自己的函数
private void myFunc()
{
//程序中其他地方调用按钮事件btn_Click(this, new EventArgs());//这样传sender和e参数就可以,this代表当前程序所在的control,new EventArgs()代表初始化EventArgs类的一个新实例
}
转载于:https://www.cnblogs.com/hanje/p/10159400.html