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
You are not using the sender or the events so you can call the function directly like this:
addPlayerBtn_Click_1(null, null);