Where’s the dropdown list of events in Visual C#?

This article mentions the availability of a dropdown of default event handlers in Visual Studio (C#). I can’t find it. What is in-line code? I am assuming C# code inside the aspx file? I tried that and there was no dropdown.

Read the line just below the first grey box. I am using VS 2008 SP1.

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

Are you talking about this panel? This lists all the events for a given control when in the Designer. You can access it by clicking the “Events” button in the Properties panel (see 1). Double-clicking in the field (2) causes Visual Studio to automatically generate a method stub.

alt text

Alternatively, if you’re viewing the code, you can type the name of the control followed by “.” to activate Intellisense, select the event you want to handle, then type “+=” and press Tab twice to achieve the same effect.

Method 2

To see the dropdown list with the event’s you have to switch to the design view, then open the properties pane. There you will find a toolbar button (a yellow flash), that will display the events of the selected control. By double-clicking an entry, an event-handler is added to the code-behind.

Method 3

See this: Events tab randomly appears and disappears in VS 2008

Method 4

This and the feature to generate event handlers without having to switch to Design view is finally coming in Visual Studio 2012.


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x