Using VS2013, you could, at least with VB.NET, double-click on the control, and then the default event will appear in the code file. Above this was a drop-down list of other possible events for this control.
This is called the navigation bar . You can enable / disable it in the Tools → Options → Text Editor → {Select Language} → Navigation Bar menu.
BUT ... the navigation bar behaves differently in C # than in VB.Net. It will not do what you want in C #, sorry!
IDE #, , , "" " ", , .
#, , , VB.Net. # , IDE . , :
Button btn = new Button();
Click(), :
btn.Click +=
= {Tab}, :
private void Btn_Click(object sender, EventArgs e)
{
throw new NotImplementedException();
}