Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
967 views
in Technique[技术] by (71.8m points)

asp.net - 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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...