【发布时间】:2011-08-24 12:43:56
【问题描述】:
我需要知道是否可以从另一个按钮调用单击按钮。
private void myAction_Click(object sender, EventArgs e)
{
// int x;
// ...
}
private void Go_Click(object sender, EventArgs e)
{
// call the myAction_Click button
}
谢谢。
【问题讨论】:
-
为什么要再次点击按钮?
标签: c# .net button click action