Tagged Questions

5
votes
1answer
272 views

Is it bad to not unregister event handlers?

If I have an application with only a few event handlers registered (and the objects using the events are not disposed until the application is closed), do I really need to worry about unregistering …
5
votes
8answers
260 views

C# EventHandler Beautiful Code (How To?)

Hi, I admit, it is kind of tiny, but I am looking for better ways to do the following code blocks. They should be self explaining... private void listBoxItem_PreviewMouseDown(object sender, …
5
votes
6answers
2k views

understanding events and event handlers in C#

I understand the purpose of events, especially within the context of creating user interfaces. I think this is the prototype for creating an event. public void EventName(object sender, EventArgs e); …
5
votes
3answers
485 views

Why does the “onmouseover” event use “return true” to prevent default behavior?

I have been searching for this for some time, but haven't got any explanation. For "onclick" and other events in javascript, the event handler returning false means "prevent default action". However, …
3
votes
1answer
83 views

XNA - Passing Information Between GameScreens

So, here's what I'm trying to do: I'm making a game for practice using the GameStateManagement example from creators.xna.com. The whole of the system is too much to explain here, so experience with …
2
votes
3answers
117 views

Pass a return value back through an EventHandler

Im trying to write to an API and I need to call an eventhandler when I get data from a table. Something like this: public override bool Run(Company.API api) { SomeInfo _someInfo = …
1
vote
4answers
213 views

jQuery: more than one handler for same event

jQuery question What happens if I bind two event handlers to same event and same element: For example: var elem = $("...") elem.click(...); elem.click(...); Later wins or both handlers will be …
1
vote
1answer
85 views

ASP.NET control events exception handling

Suppose I have a button in an aspx page that performs a save of the form data to the database. In the associated event handler, before sending the updates, I read something from a webservice, …
1
vote
3answers
353 views

In Flash AS3, Is there anyway to detect a DoubleClick action without it detecting the MouseClick?

I have 2 seperate events that are not related to each other and each is attached to the Mouseclick and Doubleclick eventresponses respectively. However, during runtime, I find that even when I …
0
votes
5answers
132 views

c# How to send an array with an event?

Hi! I have this array with information string[] aInfo; // Contains information about this person I have a clickevent on a menuitem that goes like this: // Event for adding contact …
0
votes
3answers
122 views

How does an EventHandler know to allow = operator only in defining class?

I started with a question, and in typing the question, found the answer, but instead of deleting, I thought it might be helpful to A) get confirmation, and B) help others. If I have an event, and …
0
votes
1answer
200 views

Not getting Mouse Out Event

Hi Experts, I've this code in flex where I register a mouse out event listener - ... var b:Button = new Button(); b.addEventListener(MouseEvent.MOUSE_OUT, buttonOutHandler); ... private …
0
votes
1answer
198 views

[WPF] Conditional prevention of the textbox change

I have a TextBox, and a TextBlock within the Border. The TextBlock's Text property is bound to TextBox's value. When I type into the TextBox, the Border changes its width according to the TextBlock's …
0
votes
1answer
103 views

Hosted User Control in IE and Client Side Event Handling

I just upgraded a hosted control to .NET 2.0 and I had to enable the ComVisible to access methods from the client side using javascript. Should events also be accessible once I enable ComVisible? I …
0
votes
4answers
959 views

Can an Actionscript component listen to its own propertyChange events?

I have a CircleButton class in Actionscript. I want to know when someone externally has changed the 'on' property. I try listening to 'onChange' but it never hits that event handler. I know I can …