The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
22 views

EventHandler with FormClosingEventArgs - C#

I have this closing form code in my Form.cs public void label7_Click(object sender, FormClosingEventArgs e) { MessageBox.Show("Are you sure you want to exit?", "Confirmation", ...
0
votes
0answers
7 views

Dynamically added GridViewPageEventArgs not firing

I am adding a grid view dynamically to an update panel inside a tab panel. The control loads fine and the data bind event fires correctly but when I go to change the page index it appears to fire but ...
0
votes
2answers
83 views

Getting the value from a dynamic NumericUpDown by Sender c#

I've ran into quite an annoying problem. I've got these global variables (for keeping the name etc) List<object> NumeriekVakken = new List<object>(); List<decimal> ...
1
vote
1answer
66 views

EventArgs.Empty clarification?

I have a method protected void Item_Click(object sender, EventArgs e) { } I wanted that other code to call this method. ( didn't really need the sender nor e) something like : ...
1
vote
2answers
55 views

EventHandler with FormClosingEventArgs

I have this closing form code in my Form.cs public void label7_Click(object sender, FormClosingEventArgs e) { MessageBox.Show("Are you sure you want to exit?", "Confirmation", ...
0
votes
1answer
25 views

How use MouseEventArgs in timertick?

private void timer1_Tick(object sender, EventArgs e) { MouseEventArgs m=e as MouseEventArgs; if (m.Button == MouseButtons.Right) { MessageBox.Show("dfgdf"); ...
0
votes
0answers
107 views

linkbutton inside a datalist to get value from xpath

I have the following datalist : <asp:DataList ID="DataList1" runat="server" DataSourceID="XmlDataSource1" EnableViewState = "false" Enabled = "false" Visible = "false" Width= "100%" ...
3
votes
1answer
74 views

Why no constraint on EventHandler<TEventArgs>?

I just figured out by accident (when something compiled that I didn't think would compile) that EventHandler is not constrained to the type System.EventArgs. Here's the inline docs: #region Assembly ...
0
votes
0answers
45 views

Is there any advantage of using EventArgs as opposed to using the full method signature?

I've just gotten done fiddling with events, and I can't see any advantage of using EventArgs over creating a delegate that uses the full method signature. Creating the class that derives from ...
0
votes
3answers
121 views

How to get click eventargs when setting onclick from server-side?

I'm trying to open a div like a popup, but having it centered at the spot where the mouse was when it triggered the onclick event. In order to get the mouse position, I've been following this ...
2
votes
1answer
149 views

Is it possible to find location of UIBarButtonItem when pressed in Monotouch?

In my MonoTouch application, when the user presses a UIBarButtonItem in the NavigationBar, I am trying to display a small UIMenuController relative to where the user touched the screen. I was able ...
0
votes
3answers
172 views

Does the OnNavigatedTo() event know who navigated to it?

If I have to, I will pass an arg to a page when I navigate to it, but is it necessary - is there a way to know which page called Navigate() without doing this?
0
votes
1answer
46 views

RoutedEventArgs and AllFramesEventArgs

I am trying to call a function whose parameters are object sender and RoutedEventsArg e. I need those parameters since I have created a button on the main window related to this function and when I ...
1
vote
3answers
2k views

Jquery - Pass asp button command argument with jquery

I have asp button: <asp:button ID="btn1" runat="server" CommandArgument="" CssClass="btn1" OnClick="button_click"></asp:button> and script: $("a").click(function () { var ...
0
votes
1answer
117 views

How to cast KeyValuePair passed as Parameter to Command_Executed?

Seemingly simple concept but can't get past this. I have a Command...the _Executed method receives a KeyValuePair (types don't matter) as it's Parameter. myCommand_Executed(object sender, ...
0
votes
1answer
721 views

Item Data Bound Event in repeaters ???

i m binding 4 diff tables to 4 diff. repeaters in following manner: protected void Page_Load(object sender, EventArgs e) { #region attributes DAL DataObj; DataSet ds; DataTable dt; List<int> ...
0
votes
1answer
749 views

How to use eventargs argument on asp.net button click event

It's a bit of a hack, but I'm forcing a postback on the close event of a jquery dialog. close: function (event, ui) { __doPostBack('<%=btnChange.UniqueID %>', 'refreshMe'); } It works as ...
0
votes
1answer
60 views

Event-Delegate Error publishing from BackgroundWorker

I have an interface, IDataQuery which has an Event to nofity listeners when data loading is progressing and complete. The loading is done via a BackgroundWorker, and fired appropriately, in subclasses ...
2
votes
2answers
146 views

NUnit Testing Event Args Data

I have always got around this problem by - unfortunately - using events less. However this time I came up with a nifty trick, however I don't think the following would be considered a proper approach. ...
0
votes
1answer
55 views

What is the purpose of removing the accessibility modifier of a method?

I'm reading Petzold's free (.PDF) WP7 book, and he says that he always changes "EventArgs e" to "EventArgs args" in event handlers (which makes sense to me, as "e" sometimes conflicts with what I want ...
0
votes
4answers
95 views

Should I be using multiple events or a more verbose eventargs class?

My program is receiving data on a serial port, after the data is received it can be interpreted in one of eight different ways. If I want to trigger an event after the data is received, should I use ...
0
votes
0answers
107 views

Calling a controls event handler

I decided to try a third-party's implementation of the DataGridView, specifically for the purpose of taking advantage of hierarchical grids, i.e. "Grid within a grid" functionality. While this is ...
2
votes
5answers
588 views

C# Custom Events based on time

I have a function OnCreate() that runs once every second. OnCreate calls other functions based on the current time (current second). But instead of having to write each function individually inside of ...
1
vote
1answer
211 views

unable to access EventArgs e value to use in HandleRequest

I am just learning about events, delegates and subscribers. I've spent the last 2 days researching and wrapping my brain around it all. I am unable to access the information being passed in my ...
2
votes
1answer
311 views

vb.net console app using sender As Object and e As EventArgs

I have the following code that allows my console app to go to the tray with an icon: Sub Main() Dim tray As New NotifyIcon() tray.Icon = My.Resources.phoneIcon tray.Text = "Left Click to ...
1
vote
2answers
435 views

Invoke methods in a thread

I can't use eventArgs from a method trigged for a second Thread: public class MovilinkCommunication { //Method Declarations public delegate void ...
2
votes
2answers
364 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. ...
1
vote
3answers
333 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, ...
0
votes
1answer
179 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
1k 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
742 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 ...
2
votes
2answers
421 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 ...
9
votes
3answers
544 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?
0
votes
1answer
353 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
588 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 ...
8
votes
4answers
9k 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}"> ...
0
votes
1answer
208 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
549 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
252 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
3k 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 ...
1
vote
1answer
283 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 ...
3
votes
4answers
262 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. ...
5
votes
3answers
168 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 ...
1
vote
1answer
108 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
133 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
2answers
3k 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 ...
3
votes
3answers
230 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
0answers
602 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 ...
13
votes
1answer
522 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 ...
22
votes
5answers
4k 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 ...

1 2