Tagged Questions
The eventargs tag has no wiki summary.
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 ...
12
votes
1answer
330 views
Why does CompositionTarget.Rendering take EventArgs instead of RenderingEventArgs?
The CompositionTarget.Rendering event is a plain old EventHandler, with a plain old EventArgs. However, in real life, it apparently always gets an instance of RenderingEventArgs. So your event handler ...
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)
{
...
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 ...
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 ...
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?
3
votes
2answers
2k views
MVVM Passing EventArgs As Command Parameter
I'm using Microsoft Expression Blend 4
I have a Browser ..,
[ XAML ] ConnectionView " Empty Code Behind "
<WebBrowser local:AttachedProperties.BrowserSource="{Binding Source}">
...
3
votes
4answers
107 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. ...
3
votes
3answers
15k 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
2answers
61 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
2answers
124 views
Custom Events in ASP.NET
I want to handle a custom event on an asp.net page with C# as my code Behind.
I want to increase the size of the search text box on clicking it.
It should be somewhat like this...
I know this can ...
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 ...
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 ...
2
votes
3answers
197 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
3answers
75 views
VB.Net, EventArgs, ByRef and ByVal
In VB.Net, I have an object named WorkflowButtonEventArgs that inherits from System.EventArgs.
The WorkflowButtonEventArgs class contains two ByRef Properties. These are objects that are in memory, ...
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
2answers
98 views
How do I find which eventargs class to use in asp.net control event
If I add an event to my control in the markup, eg in and EntityDataSource add a OnUpdating,
how can I find the method parameter list?
eg how do I know to put in
(object sender, ...
1
vote
0answers
247 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
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 ...
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
1answer
37 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
3answers
291 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 ...
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 ...
0
votes
1answer
170 views
DelegateCommand<object> test with EventArg parameter mstest
I currently have an event trigger firing a custom trigger action.
The action passes back a EventArgs type of object to the view's view-model.
This is all well and good when I run the code it works ...
0
votes
2answers
144 views
Passing information from javascript to C# using events
I have this ASP.net component:
<asp:Button ID="Button4" runat="server" Text="Submit Entry" CssClass="eventSubmitButton" OnClick="SubmitData"/>
and I'd like to send some additional information ...
0
votes
1answer
89 views
What is the type of MouseEventArgs.X?
Working with C# in Visual Studio 2008 (.NET 3.5). Looking into System.Windows.Forms.MouseEventArgs.
I'm seeing strange behavior with long Panel when I intercept handle the MouseMove event. It ...
0
votes
3answers
184 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
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 ...
0
votes
2answers
1k views
using EventToCommand & PassEventArgsToCommand :: how to get sender, or better metaphor?
The point of what I'm doing is that there are a lot of things that need to happen in the viewmodel, but when the view has been loaded, not on constructor. I could wire up event handlers and send ...
0
votes
5answers
473 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
164 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
154 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 ...
0
votes
1answer
630 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 derived from EventArgs ...
0
votes
1answer
199 views
LinkButton not accessing EventArg
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 to the button, it does however ...