Here are the steps to create a simple calculator in Windows Forms.
private void btn0_Click(object sender, EventArgs e) { txtResult.Text = txtResult.Text + "0"; }
Thank you.
Read more articles on Windows Forms.