[RESOLVED] [3.0/LINQ] Stupid Question
So, I just started my first C# application. In VB.net you can view the form events by clicking the drop down at the top left that says "Form1 Events" and on the right drop down box by clicking the event you want to code.
How do I view the form events in C#?
Re: [3.0/LINQ] Stupid Question
That list in VB contains all the variables declared WithEvents, thus able to be included in a Handles clause. C# doesn't have WithEvents or Handles clauses, so it doesn't have that list. C# has always provided access to design time event handler creation via the Properties window, by clicking the Events button. Now that VB allows you to add a control or component at design time without creating a member variable, it provides the same functionality too.
Re: [3.0/LINQ] Stupid Question