I'm new to Visual Studio (2013)
, I usually add event handlers in the design view via the thunderbolt icon. How can I do this in the code editor using a kind of code completion? In particular for events defined in referenced DLL, that I cannot access in the design view.
EDIT For example this event handler generated via thunderbolt icon in design view:
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
...
}
How can I do the same in the code editor, selecting somehow Form1, having a list of available events and choose one of them...