Tagged Questions
6
votes
3answers
838 views
.NET: Is creating new EventArgs every time the event fires a good practice?
For example, I have a base event publishing method:
protected virtual OnSomeEvent(EventArgs e)
{
var handler = SomeEvent;
if (handler != null)
{
...
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
113 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
2answers
54 views
C# - Override eventargs of WebBrowserDocumentCompletedEventHandler
I would like to override the EventArgs of the event WebBrowserDocumentCompleted. I can't create a personal event handler, because I have no idea when I should fire the event DocumentDownloadCompleted. ...
2
votes
3answers
126 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 ...
2
votes
1answer
104 views
event args assigning
i have this event handler
Temp.MouseLeftButtonDown += new MouseButtonEventHandler(Temp_MouseLeftButtonDown);
but i wanna send some parameter to access in the Temp_MouseLeftButtonDown function.
how ...
2
votes
5answers
2k views
How do I make an eventhandler run asynchronously?
I am writing a Visual C# program that executes a continuous loop of operations on a secondary thread. Occasionally when that thread finishes a task I want it to trigger an eventhandler. My program ...
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
83 views
Pass additional parameters or objects using an Event Handler
I feel like this is really basic, but I'm having trouble with this issue. I'm using a Process object and subscribing to a DataReceivedEventHandler. This event handler then delegates to another ...