0
votes
0answers
3 views
Fire event when switching stacks of StackLayoutPanel in GWT 2.0
I'm trying to catch an event, when I switch the stacks of a StackLayoutPanel in GWT 2.0.
The biggest problem is that I don't know which event gets fired and there seems to be no documentation, I have …
0
votes
1answer
17 views
WPF - Catch a CLR event in A Style template
I have a style for a ListBox. In the listbox style I have a style for the ListBoxItems. All of this is in the section.
I want to catch the IsEnabledChanged event for the Listbox Items (see this …
0
votes
1answer
20 views
How provide own Sent Messages in Interface Builder
I cannot find documents about the way, in which Interface Builder determines the Sent Message outlets for the graphical connections between components triggering events and messages of other …
0
votes
3answers
28 views
Fire mouse event on underlying components
I'm looking for a way to pass mouse events to components covered by other components. To illustrate what I mean, here's a sample code. It contains two JLabels, one is twice smaller and entirely …
1
vote
2answers
29 views
How can I pass addition parameters to my centralized event handlers?
In a WPF application, I've got my events centralized in one class like this:
public class EventFactory
{
public static void Button_Edit_Click(object sender, RoutedEventArgs e)
{
…
1
vote
3answers
70 views
How to prevent subscribers to an event from conflicting with each other?
Say I have an event with 2 subscribers (everything occurs in the same thread) - one subscriber writes to a log file, the other shows a MessageBox.
If the MessageBox is the first on the subscription …
1
vote
2answers
24 views
C# Attaching Eventhandler with New Handler vs Directly assigning it
Hello,
I was just wondering what the actual difference, advantage and disadvantages of creating a new event handler, vs assigning it directly to the event ?
_gMonitor.CollectionChanged += new …
2
votes
1answer
27 views
What is IDataErrorInfo and how does it work with WPF?
While working on some custom validators in WPF, one of my co-workers pointed me out the IDataErrorInfo. I have a sample view in XAML that has a textbox and a button. Based on the value in the textbox …
0
votes
1answer
36 views
Any efficient/reliable way to expose one event?
Any efficient/reliable way to expose one event?
I have a class, MultipleDocumentCopier that copies multiple documents thru an instance of SingleDocumentCopier.
SingleDocumentCopier exposes an event …
0
votes
0answers
12 views
mouseleave event not firing when moving over child Flash movie
I'm trying to get some rollovers to work, but I'm running into a mouseleave problem.
Everything is working, except there is a Flash movie that is near the top of one of the rollover targets. When the …
0
votes
1answer
34 views
ListBox with DoubleClick on Items using DataTemplate
Hello,
i want to know a double-clicking functionality for a list-box kann easily be build. I have a list-box with a collection as ItemSource. The collection contains own data-types.
<ListBox …
0
votes
2answers
22 views
Using loops, arrays and IEventDispatcher with URLRequest.
So basically I have this map. On this map I have points, and when you click on these points it goes to a URL.
The code setup is as follows:
Arrays to define the movieclip
locations and another for …
0
votes
0answers
16 views
Handling touch events on UI Controls using Objective C (iPhone Development)
Hi,
I am new to iPhone programming (Objective C language). I need some help.
I am working on event handling on the controls like UITextField, UISlider, UISwitch etc.. How can I fire touch events on …
0
votes
2answers
32 views
Add a Load event for Winforms Control just as Form class
Hi, is there a way I can get a Load event for System.Windows.Forms.Control just like System.Windows.Forms.Form.Load?
I want to run some initialize code before the control first shown.
Also, it would …
0
votes
1answer
69 views
Best way of catching a postback in javascript?
Hello. I am needing a piece of javascript to be run whenever a postback occurs. Well, actually multiple pieces. This is to be done inside a custom control, so the javascript code that should be run …
