Tagged Questions
4
votes
3answers
121 views
Is there a special association between the EventArgs class and the event keyword?
In all the .NET book I've read the guide line for implementing events explains that you need to subclass EventArgs and use EventHandler. I looked up more info on ...
3
votes
3answers
115 views
Why not using custom class instead of inheriting from EventArgs class
I'm wondering why should I use a class that inherits from the EventArgs class instead of using a custom class that will do the same job for me when passing event data?
2
votes
3answers
127 views
How do you deal with “events” in a high-performance scenario?
Update: I wrote a program to test the memory implications of each of the techniques I mention below. Not too surprisingly, I found that, sure enough, the conventional approach using .NET events ...
1
vote
1answer
159 views
Best Practice for IEnumerable in event arguments
I have a DLL including a class for managing audio and midi ports and connections. Whenever ports are registered or deregistered or connections are formed or released, this class fires an event, like ...
1
vote
1answer
73 views
.net: In a 3-layer Windows application Project, where it should be declared an EventArg class?
In a 3-layer Windows application Project, where it should be declared an EventArg class?
1
vote
3answers
1k views
How do EventArgs Cancel work in the FormClosing Event?
How does the e.Cancel event work in the FormClosing event on a WinForm? I know you set it to True to cancel the closing, but at what point does the form process this? Is there a secondary action taken ...
0
votes
1answer
113 views
Event Arguments Best Practice and Updating Issues
Can I update only selected variables within a custom EventArgs class or do I need to update all of them at the same time? For instance when this method is called:
public void updateEvents(string ...
0
votes
3answers
1k views
how to access Custom EventArgs class in Button click event?
As a follow up to:
access values within custom eventargs class
How do I access public variables within custom Eventargs class, using button click or any other method?
Example Custom Event Args ...