Tagged Questions
The routedevents tag has no wiki summary.
5
votes
1answer
2k views
Button.MouseDown
I'm relatively new with WPF.
I'm trying to understand the difference between MouseDownEvent and PreviewMouseDownEvent.
I understand the WPF event strategies and i understand that the MouseDown event ...
2
votes
1answer
241 views
What's the difference between a class listener and an instance listner in WPF?
I am trying to wrap my head around some WPF specific stuff, and have yet to find the concrete relation between the UIElement.AddHandler method and the EventManager.RegisterClassHandler method.
I ...
2
votes
1answer
380 views
WPF Command bindings - how can I get to event handlers
Hi
Is there any way to choose from where XAML should use command bindings event handlers?
I added copule of command binding to my cusotm control, however functions which are resonsible for execute and ...
1
vote
1answer
64 views
Routed Events problem - hitting the root UI element before the child element
My routed events are hitting the root UI element before the child element. Is this expected? How can I have the routed events hit the child element first?
Objective: If text is typed anywhere ...
1
vote
2answers
193 views
Wpf stop routing event when MessageBox appear?
I've PreviewMouseDown event on TreeView in order to determine if user can select other item based on some logic.
If the current item data changed, will appear MessageBox that asks the user if he want ...
1
vote
1answer
165 views
Making WPF user control mark click events as handled
I have a custom controls which propagates the mouse click event up the visual tree and I would like to get rid of this behaviour. Is there a way to mark a routed event (which was raised by button ...
1
vote
1answer
219 views
WPF: Handling bubbling events only from one specific content
Now I'm about to learn RoutedEvents. I understand bubbling and tunneling and all. But I have a little problem I'm not sure how to handle.
I've got a ItemsControl in my own defined UserControl ( ...
1
vote
1answer
141 views
WPF Routed events firing?
I have a WPF form with 3 buttons and have routed events on them, commands are binded on start...
private void InitCommandBinding(UIElement frameworkElement) {
CommandBinding commandBinding;
...
0
votes
1answer
510 views
SilverLight: HyperLinkButton is there any other way to pass arguments to the Click function besides using Tag?
I have this in the XAML:
<HyperlinkButton Tag="{Binding Href}" Click="lbImage_hyperlink">
<Image Source="{Binding Href}" Height="40" Width="40" ...
0
votes
1answer
182 views
WPF - Handling a RoutedEvent in the parent for a specific control instance
In my user control I have several textboxes e.g. Textbox1, Textbox2.
In the parent I only want to handle KeyDown events raised from Textbox1, not all Textbox
I have added a handler in the parent
...
0
votes
2answers
100 views
Silverlight 3 LoadedEvent routed to ViewModel
My client is trying to hook to a usercontrols Loaded Event in the View Model. Basically they want to know when the controls loaded event triggers inside the view model. They are looking for a way to ...