Triggering a button click through code

前端 未结 6 516
暖寄归人
暖寄归人 2021-01-11 15:18

So I have the following code for when the \"Add player\" button is clicked

private void addPlayerBtn_Click_1(object sender, EventArgs e)
{
    //Do some code         


        
6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-11 15:37

    You are not using the sender or the events so you can call the function directly like this:

    addPlayerBtn_Click_1(null, null);
    

提交回复
热议问题