|
-
Dec 4th, 2007, 02:56 PM
#1
Thread Starter
Addicted Member
[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#?
-
Dec 4th, 2007, 06:23 PM
#2
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.
-
Dec 5th, 2007, 08:24 AM
#3
Thread Starter
Addicted Member
Re: [3.0/LINQ] Stupid Question
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|