Tagged Questions
The routed tag has no wiki summary.
2
votes
0answers
466 views
How to add Command Binding to an Items control that does not have the command binding property
I use the MVVM pattern and I have the following code:
<DataTemplate x:Key="ActivityEditTemplate">
<ItemsControl ItemsSource="{Binding Path=ActivityList}">
...
1
vote
1answer
191 views
Find out source of raised Routed Event
I've small trouble. I don't know why my controls firing events twice. I know it was discussed few times on stackOverflow, but still i cannot find out cause.
Is there any way to debug application and ...
1
vote
1answer
708 views
How To Get Global MouseMove And KeyDown Events In Silverlight
Application.Current.RootVisual.KeyDown += Application_KeyDown
The above does not work if I'm on a ChildWindow - that was instantiated in runtime. My question is, how do I get the mousemove or ...
1
vote
1answer
2k views
WPF Routed Commands and ShowDialog Windows
I was wondering how a window opened through ShowDialog is treated in the Visual Tree.
For example, Window A opens Window B through a ShowDialog. When firing a routed command on Window B, Window A ...
0
votes
2answers
86 views
WPF Custom Routed Events - How to UnSubscribe?
How to DeRegister from one Custom Routed Event.
I have the following code (very standard for Custom Routed Events)
//Dispatch the Video Detection Movements
public delegate void ...
0
votes
3answers
575 views
WPF and events from dynamically created controls
I need some help to implement a common behavior in some controls.
In my WPF application, I have a main form that contains a panel and a button:
Ok
...
0
votes
1answer
663 views
C#/WPF: Catch Routed Event (UIElement.PreviewKeyUp) from UserControl
I've a UserControl which contains a TextBox called myTextBox. This UserControl is placed in a MainWindow.xaml where I'm trying to catch the "UIElement.PreviewKeyUp".
Now when debugging, I can see the ...
0
votes
1answer
870 views
WPF ItemsControl: Route TextChanged Event to all UserControl Items
I've placed in a ItemsControl Container (Template Stackpanel) my UserControls, which get dynamically added and removed while running the application.
How can I route an Event (e.g. TextChanged or ...