Tagged Questions

2
votes
3answers
70 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 k …
0
votes
1answer
32 views

Can you set EventArgs from ASP.NET controls?

I have a DropDownList whose SelectedIndexChanged event I set: move.SelectedIndexChanged += Move; public void Move(object sender, EventArgs e) { } I'd like to create a class der …
1
vote
3answers
69 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 se …
0
votes
1answer
30 views

LinkButton not accessing EventArg

Hello all, I am using c#.net. I am trying to create a LinkButton within the code-behind, when I debug my code I recieve no errors, however its not accessing the EventArg attached …
0
votes
1answer
44 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 con …
4
votes
2answers
139 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: …
0
votes
3answers
178 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 …
1
vote
6answers
1k views

C# Custom EventArgs Question

Hi all, 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 collectio …
0
votes
3answers
1k views

asp.net :how to use eventargs for parameter passing on button onclick?

i have seen some code in which people pass parameter through commandParameter Property of web control.then what is use of eventargs.
2
votes
4answers
413 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 …