Tagged Questions
The routed-events tag has no wiki summary.
12
votes
6answers
714 views
MouseDoubleClick events don't bubble
My scenario, simplified: I have a ListView containing rows of Employees, and in each Employee row, there are buttons "Increase" and "Decrease" adjusting his salary.
Pretend that in my program, ...
5
votes
3answers
2k views
Bubbling RoutedEvent or RoutedCommand to a ViewModel
I've got a collection of ViewModels that are rendered as tabs using a style to pull out the relevant content to display on the tab:
public class TabViewModel : DependencyObject
{
public object ...
5
votes
3answers
4k views
WPF: Routed events or regular events?
In WPF we have routed events. When should these be used instead of regular events?
5
votes
1answer
2k views
WPF Custom Routed event question
How do you get two unrelated controls to raise the same custom event? All examples I have seen so far have an event defined within a single control, should I be taking a different approach?
Eg. I'd ...
4
votes
1answer
298 views
Why e.Handled = true not working?
I have following XAML
<StackPanel MouseEnter="StackPanel_MouseEnter" Height="130" Background="Blue">
<Grid MouseEnter="Grid_MouseEnter" Height="60" Background="Red" >
...
4
votes
1answer
248 views
TextChanged Events - Why does this not result in an infinite loop?
While trying to do something a bit more complicated, I ran across a behavior I don't quite understand.
Assume the following code below handling the textChanged event.
private void ...
3
votes
1answer
240 views
Direct Routed Event question
A colleague and I were chatting about routed events, and we came up with some things that didn't make a lot of sense. Primarily, what is the purpose of a Direct event, and why are both ...
3
votes
2answers
2k views
RoutedEventArgs vs EventArgs
I am learning WPF / Silverlight and saw in an MS vidcast that it is now recommended to use RoutedEventArgs over EventArgs; although it didn't say exactly why.
I have a win forms app that uses ...
2
votes
1answer
39 views
Unable to perform RoutedEventHandler
I have loop to create a column of button and now i wish to implemented the eventhandler into all the buttons but is not working.
The iteration to create a column of button
For e As Integer = 0 To ...
2
votes
1answer
107 views
WPF routed events handling in UserControl
I have a WPF UserControl that contains a button. I also have a WPF Window that contains a button.
In both the UserControl and the Window I place the following line in XAML:
...
2
votes
1answer
146 views
PreviewMouseDown not tunnelling as expected
I have the following tree on my app:
MainWindow (Window)
> LayoutRoot (Grid)
> (MyCustomControl)
> Item1 (Grid)
> Button (Button1)
MyCustomControl derives from ItemsControl ...
2
votes
2answers
189 views
WPF Dependency Property workaround
There are 3 UserControls under a MainWindow. Each control have it's own Save Button. The Mainwindow has a SaveAll button.
The MainWindow has a ContentControl and the content property is binded to the ...
2
votes
1answer
300 views
MouseEnter and MouseLeave processing in WPF (using VS2008 and .net 3.5) not working as expected
It is not easy to explain the problem without an image and without code. For those interested, I have made a sample C#/WPF project that can be downloaded from ...
2
votes
3answers
427 views
Can/Should MouseEnter event bubble?
Is it possible under any circumstances to get MouseEnter event bubbling?
MSDN says it's an attached event with Direct routing strategy, which technically excludes such possibility. I've a fairly ...
2
votes
1answer
487 views
Can anyone raise any RoutedEvent in WPF?
In C# events were always very protected: Only the owner of the event could trigger them. However, this seems to be completely different in WPF - Anyone can throw any event at any time. To test that, ...
2
votes
1answer
129 views
Raising RoutedEvents in non-UIElement class
It seems that the entire power of routedevents is directed towards UI development.
Meaning to ask, would it be possible to raise a routed event from a class that does not extend a UIElement or ...
2
votes
1answer
575 views
WPF - Events on a ControlTemplate?
Does anyone know why I can't set an event on a control template??
For example, the following line of code will not compile. It does this with any events in a control template.
<ControlTemplate ...
2
votes
1answer
221 views
Click event for controls below other controls
I have two controls A and B. Control B is placed over A. When B is clicked only it's clicked event is fired, however I need the click event of A to fire too. Can this somehow be realized using routed ...
2
votes
1answer
675 views
Command Binding Memory Leak in WPF
When i create a user control that has a CommandBinding to a RoutedUICommand im worried that i get memory leaks.
scenario:
Have a RoutedUICommand as a static in c class where i store my commands
...
2
votes
3answers
520 views
Disable Return key outside textareas on a Asp.Net web page (containing ajax code)
I have an Asp.Net web page, having the common Asp.Net form. The outer "border" of the page (i.e. main menu, header, ...) is build using normal Asp.Net code using a master page. The content of that ...
2
votes
1answer
3k views
WPF MVVM Routed Events
There are a lot of discussions about M-V-VM and Command binding (RelayCommand) but not a lot has been covered on Routed Events binding to a handler in a M-V-VM pattern. I want to find what is the best ...
2
votes
2answers
530 views
Is there a way to watch WPF Routed Events?
I was wondering if there's a way to watch all RoutedEvents that are raised in a WPF application. A way to write some info about the events fired to the console would be prefect to see what's going on.
...
2
votes
2answers
2k views
Custom attached events in WPF
I might be getting the terminology wrong here, but I think I'm trying to create an attached event.
In the Surface SDK, you can do things like:
<Grid Background="{StaticResource WindowBackground}" ...
2
votes
1answer
933 views
In WPF, is it possible to specify multiple routed events for a single event trigger?
I have an event trigger that I want to be fired in response to two different routed events. I don't want to repeat the event response code (in XAML) twice. Can I specify multiple routed events for a ...
1
vote
1answer
63 views
Using ICommand and InputBindings consistently in DataGrid
I'm trying to create a DataGrid having the following features:
Readonly Datagrid, but provide editing capabilities through double click and separate edit form (double click on specific row)
...
1
vote
1answer
43 views
Route event From Item to a Collection in MVVM
How can I do something like this?
public class person
{
public ICommand Add_as_Friend { get; private set; }
public event EventHandler C1_Friend_Add;
//....
Add_as_Friend = new ...
1
vote
3answers
59 views
Handling a bubbling event raised from a modal dialog in main window
I have a modal dialog in my WPF application that allows a user to login to a server. The dialog simply contains a User Control that handles all the login stuff (UI, web service call, and raising a ...
1
vote
1answer
94 views
Routed events and dependency properties .NET wrapper confusion
I'm new to WPF and have a confusion about wrapping syntax of routed events and dependency properties
I've seen on many sources that routed events and dependency properties are wrapped like this
// ...
1
vote
1answer
86 views
Routed events in silverlight 3?
I have a Control, within a control, within a control.
Like so..
QuizMaster -> Question -> Answers -> RadioButton
When one of the answers is checked I want the function in Quizmaster called ...
1
vote
1answer
63 views
Routed Events & ScrollViewer
Here's how my element tree is composed (irrelevant informations removed).
<TabItem Style="Click_PutNormalCursorBack">
<ScrollViewer>
<ItemsControl ...
1
vote
1answer
277 views
Get TreeViewItem datacontext from root container
I have a Window with two use controls. One encapsulates a TreeView control and another is marely a string representation of a selected TreeViewItems details.
TreeView controls is already self ...
1
vote
1answer
143 views
Not able to handle PreviewMouseDown
Hey; I have the following visual hyerarchy in a usercontrol:
Grid -> Canvas -> MyContentControl
MyContentControl is a class derived from ContentControl that has an adorner on top that is a ...
1
vote
1answer
288 views
Bubbling events in WPF? Simple Question
This is probably a really easy fix, but I am inexperienced in working with events so I am just going to ask it.
I have a ListBox with ListBoxItems in it. These ListBoxItems will be binded to a data ...
1
vote
1answer
357 views
Hiding/showing child controls when parent control gains/loses focus
I am creating a text editing control that contains a RichTextArea and a toolbar for formatting. I want the toolbar to only be visible when the control has focus. However I am finding this difficult to ...
1
vote
1answer
478 views
Routed Events in WPF - using an Action delegate
I'm developing a user control, and wish to use a routed event. I notice that there are two delegates provided - RoutedEventHandler, and RoutedPropertyChangedEventHandler. The first that doesn't pass ...
1
vote
2answers
330 views
Understanding Routing Events: Why I need both, bubble and tunnel events?
I read this good article about Routed Events, and I understood why we need sometimes bubble Events and sometime we need tunnel Events.
What I didn't understand is, when we use the tunnel Event, why ...
1
vote
1answer
143 views
Raising ContextMenuClosing event manually
I'm deriving from ContextMenu and inside the derived class I need to raise the ContextMenuClosing event manually. I tried the following two ways:
// On runtime tells me it can't convert from
// ...
1
vote
2answers
1k views
raising events passing parameters in wpf
I'd like to add tabs to my window when an item in the GridView is double-clicked. But the tab that will be added depends on the clicked item. Which way should I do this on WPF? I thought about ...
1
vote
2answers
486 views
How do I swallow the dropdown behavior inside an Expander.Header?
I would like to prevent an Expander from expanding/collapsing when users click inside the header area. This is basically the same question as Q 1396153, but I'd appreciate a more favorable answer :)
...
1
vote
1answer
281 views
MS Surface Tag Visualizer steals contact events
I'm struggling with the TagVisualizer control on an MS Surface project. In theory the control seems great, allowing you to respond to input from real world physical objects
The problem is that the ...
1
vote
1answer
133 views
Checking if a RoutedEvent has any handlers
I've got a custom Button class, that always performs the same action when it gets clicked (opening a specific window). I'm adding a Click event that can be assigned in the button's XAML, like a ...
1
vote
1answer
484 views
WPF: Custom routed event with extra information
I have a normal WPF window, let's call it TopLevel which has a bunch of controls in it, among other things a simple ListView which should log certain events in different elements in the application.
...
1
vote
1answer
210 views
WPF RoutedEvents Being Handled By…?
I have a 3D application in WPF which basically is supposed to zoom in and out as the MouseWheel event is fired. I have attempted to subscribe everything possible, but can't find what it is which is ...
1
vote
2answers
172 views
How can I listen to a RoutedEvent from a class that doesn't derive from FrameworkElement ? Can it be done?
The question says it all basically.
I want in a
class MyClass
to listen to a routed event. Can it be done ?
0
votes
2answers
34 views
Parent-Child inside DataTemplate
In my MainWindow, I've got a ListBox whose ItemsSource is bound to an ObservableCollection of Layout POCO objects:
<ListBox x:Name="ListBox" ItemsSource="{Binding Layouts}">
...
0
votes
2answers
273 views
using attached events with caliburn micro Message.Attach
I'm trying to use caliburn micro message to trigger an attached event that I created:
public static class DataChanging
{
public delegate void DataChangingEventHandler(object sender, ...
0
votes
1answer
66 views
Add click event to custom control
How can I add the Click routed event to my custom class?
This doesn't work. When I click the item the Click event does't occur.
public static readonly RoutedEvent ClickEvent = ...
0
votes
1answer
29 views
See what handled a routed event
Basically we have a huge project, and we have an event handler that sometimes is triggered and some others it isn't. I think this is because somewhere in the jungle of code, we're handling that event, ...
0
votes
0answers
73 views
ComboBox PreviewKeyDown doesn't fire for Return key
I'm want to conditionally prevent the Enter/Return key from selecting the highlighted item in a ComboBox drop down. So I wired up an event handler to the ComboBox.PreviewKeyDown so that I could set ...
0
votes
1answer
58 views
Using custom RoutedEvent in WPF causes TargetInvocationException
I am trying out custom routed events, but I get a TargetInvocationException when compiling with an Attached Event Handler.
I have the following code inside custom control EventRaiserControl:
public ...