在C#中从另一个调用Button的代码

时间:2011-05-12 22:45:38

标签: c# .net button click action

我需要知道是否可以从另一个按钮中点击一个按钮。

private void myAction_Click(object sender, EventArgs e)
{
    // int x;
    // ...
}

private void Go_Click(object sender, EventArgs e)
{
    // call the myAction_Click button
}

感谢。

2 个答案:

答案 0 :(得分:8)

你想:

private void Go_Click(object sender, EventArgs e)
{
    myAction_Click(sender, e);
}

但更好的设计是将代码拉出来:

private void myAction_Click(object sender, EventArgs e)
{
    DoSomething();
}

private void Go_Click(object sender, EventArgs e)
{
    DoSomething();
}

private void DoSomething()
{
    // Your code here
}

答案 1 :(得分:0)