at runtime, by double-clicking on a control, would inform a textbox the statement double click event of this control. Example: label1 in Form1. User gives double click on it and show the TextBox.Text = "private void label1_Click (object sender, EventArgs
e)" and in the case of a mouse event TextBox.Text = "private void label1_MouseDoubleClick (object sender, MouseEventArgs e)"
How to get this statement? There are several statements, usually the first parameter is the object sender and the second parameter can be EventArgs or derived.
How to get this statement? There are several statements, usually the first parameter is the object sender and the second parameter can be EventArgs or derived.