Tagged Questions

13
votes
5answers
1k views

Does .NET have a built-in EventArgs<T>?

I am getting ready to create a generic EventArgs class for event args that carry a single argument: public class EventArg<T> : EventArgs { // Property variable private readonly T ...
9
votes
2answers
961 views

Should an Event that has no arguments define its own custom EventArgs or simply use System.EventArgs instead?

I have an event that is currently defined with no event arguments. That is, the EventArgs it sends is EventArgs.Empty. In this case, it is simplest to declare my Event handler as: ...
6
votes
3answers
872 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) { ...
6
votes
4answers
2k views

Are EventArg classes needed now that we have generics

With generics, is there ever a reason to create specific derived EventArg classes It seems like now you can simply use them on the fly with a generic implementation. Should i go thorugh all of my ...
5
votes
3answers
126 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 ...
4
votes
3answers
681 views

How wrong is it to create an event handler delegate with out the standard (Obj sender, EventArgs args) signature?

I understand the benefits of using the standard MS event handler delegate signature as it allows you to easily expand on the information passed through the event with out breaking any old ...
3
votes
3answers
119 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?
3
votes
4answers
115 views

How to do I return an item from a custom event handler

A project I'm working on requires me to be able to fire off an event everytime an item is added to a list. To achieve this, I created a custom List class inheriting from List and added a OnAdd event. ...
2
votes
2answers
95 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
1answer
118 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 ...
2
votes
3answers
202 views

Can someone please explain to me in the most layman terms how to use EventArgs?

I know they have something to do with delegates. I've tried but I still don't comprehend how to use those either. I know a little about event handlers but what I really want to know is how I can use ...
1
vote
1answer
164 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
0answers
266 views

C# Serialize EventArgs to Xml

I am trying to serialize an object that contains an EventArgs object. If I ignore the EventArgs object upon serialization, everything works fine, but if I don't put an [XmlIgnore] above it, the ...
1
vote
6answers
6k views

C# Custom EventArgs Question

I have a custom collection that I am adding a ValidateItem event to. This ValidateItem event will be called whenever an item is added to or updated in the custom collection. I want to allow derived ...
0
votes
1answer
39 views

Wrapper for a method that accepts (EventArgs)

I'm trying to implement EventArgs to pass a list of parameters to my messaging system: Question. I subclassed EventArgs: public class SingleParameterArgs<T> : EventArgs { public T arg1; ...
0
votes
1answer
98 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 ...
0
votes
3answers
205 views

How to check for “method group” via “sender” object?

Imagine a method like this ( in Win Forms): //First method private void buttonStart_Click(object sender, EventArgs e) { //I call another method here this.GetData(sender, null) } ...
0
votes
1answer
124 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 ...
0
votes
5answers
495 views

How to Instantiate a Custom EventArgs Class that has no Accessible Constructor?

I have a problem; I'm using an external library where one particular event has its own custom eventargs; with no constructor. If I want to throw my own event using these eventargs, how can I? I'll ...
0
votes
1answer
169 views

how to deal with multiple event args

I am in the process of creating a small game. The engine will have a number of events that the GUI can subscribe to. The events are: ballselected balldeselected ballmoved ballremoved This would ...
0
votes
3answers
156 views

Problems with, or best practices for, passing data back through eventargs?

I've got a non-GUI class that generates events as to what it is doing (which are in turn used by a Form to display to the user the progress). One of the events is a ...