Tagged Questions
9
votes
2answers
917 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
840 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 ...
4
votes
3answers
660 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 ...
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
1answer
586 views
WPF: I don't understand class TextCompositionEventArgs
I don't understand the class TextCompositionEventArgs.
There are members of type string named ControlText,SystemText,Text. Then there is a field TextConmposistion which itself contains the members ...
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
3answers
292 views
How to translate CodeBehind WPF Events; Event, Handler, EventSetter to MVVM pattern?
I am trying to translate WPF CodeBehid events like Event, Handler, EventSetter to MVVM pattern. I am not allowed to use System.Windows.Controls since I am using MVVM. And I am also avoiding 3rd party ...