Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
12k views

Fading out a wpf window on close

I want to fade a window in/out in my application. Fading in occurs on Window.Loaded and I wanted to fade out on close (Window.Closed or Window.Closing). Fading in works perfectly but a RoutedEvent is ...
7
votes
2answers
531 views

How to convert a WPF Button.Click Event into Observable using Rx and F#

I am trying to replicate some C# code which creates an IObservable from a Button.Click event. I want to port this code to F#. Here is the original C# code which compiles without errors: ...
5
votes
0answers
510 views

WPF Attached Events vs Non-Attached Events [closed]

The question is that after all my research I still can't find the difference between a regular routed event and a attached event. What is the functional the difference? or do others agree that there ...
4
votes
1answer
609 views

Are routed events weak in WPF

Does routed events in WPF store strong reference to the handler that is attached to them?
3
votes
1answer
148 views

How to catch SourceUpdated for nested children of window?

I would like to know when any input element on my Window has its Binding source updated. The input elements could be TextBox, RadioButton, Slider, ComboBox etc, and may be nested within UserControls ...
3
votes
1answer
573 views

WPF RoutedEvent (via EventManager.RegisterClassHandler) question

I'm trying to find a generic way to track "Modified" of any control (databind or not) in the current window (this is e.g. to enable or disable the Apply button in a typical Options window.) In fact, ...
3
votes
2answers
314 views

WPF FrameworkElement not receiving Mouse input

Trying to get OnMouse events appearing in a child FrameworkElement. The parent element is a Panel (and the Background property is not Null). class MyFrameworkElement : FrameworkElement { ...
3
votes
1answer
1k views

Programmatically open context menu using UI automation?

I'm trying to implement a right click context menu using UI automation. Since UI automation does not have a native right click pattern I am adding an ExpandCollapse provider to the listview's ...
2
votes
4answers
611 views

WPF: How to prevent CheckBox.Checked event from being fired for ComboBox as a ToggleButton?

I have a lots of controls in a Window including checkboxes and comboboxes. I want to track CheckBox.IsChecked event, so I defined an event handler in Windows level as <Grid ...
2
votes
1answer
379 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 ...
2
votes
2answers
126 views

The bast way to track “modified” of a control?

I have a usercontrol which may contain many different kind of controls (e.g. button, textbox, combobox or checkbox). I need a generic way to track if anything has been changed. In most cases I don't ...
1
vote
1answer
288 views

why does the wpftoolkit datepicker eat the return key down event?

I am wondering if anybody knows why the datepicker will pass standard keys to any parent control's key down routed event, but not the return key? here's the xaml i wrote: <WrapPanel ...
1
vote
2answers
448 views

WPF Application Command Bindings doesn't work

Hi I have a strange problem with CommandBindings in WPF. I add CommandBindings in constructor of object. The command bindings looks like that CommandBindings.Add(new ...
1
vote
1answer
334 views

Passing Input events from HwndHost to underlying WPF controls?

is there a way to pass input events (primarily mouse, but eventually keyboard input too) that occurs on a HwndHost back to the underlying WPF controls (e.g. a panel) ? i can hook up to WndProc within ...
1
vote
2answers
286 views

Handled RoutedEvent continues to bubble up tree

I'm developing a TreeView based control and my double click event continues to bubble up my TreeViewItem nodes. The goal is to have the TreeViewItem expand or collapse when it is double clicked. I ...
1
vote
2answers
1k views

WPF How to create CUSTOM tunel routedevent?

I need a simple example of a Tunnel Routed Event tunnelling from a parent control to a child control. (THIS IS NOT REAL CODE) -- in fact, the deeper I go, the more I think that the XAML is wrong -- ...
1
vote
2answers
2k views

Removing Routed Event Handlers through Reflection?

Background: I'm using WPF and C# (3.5) and am working on an app that allows a user to view a form/window/usercontrol that's already part of a compiled assembly. When they view it, they should be ...
0
votes
1answer
18 views

How do I use a routed event from a child element that is created on the fly?

I have an event in my MainWindow that is being fired from one of my child controls as a routed event. The MainWindow has an AddHandler call to catch the routed fire. I would like to fire this same ...
0
votes
1answer
40 views

Get RoutedEvent Source as grandchild of handler

I'm handling user input in a WPF application, working with RoutedEvents such as MouseDown, MouseMove etc. I've got a good grip of tunneling and bubbling from MSDN's Routed Events Overview, but I've ...
0
votes
0answers
13 views

Why are my tunneling event arguments object and bubbling event arguments object not equal?

I'm working through the 70-511 book, and am looking at the section on Routed Events. I noticed it mentions that bubbling-tunneling event pairs share the same EventArgs instance, so if you handle the ...
0
votes
1answer
62 views

How to unit test CanExecuteRoutedEventHandler?

I am trying to write a unit test for the following code: public static void AppExitCmdCanExecute(object sender, CanExecuteRoutedEventArgs e) { e.CanExecute ...
0
votes
1answer
311 views

RoutedEvent Name already used

In WPF, I've created 3 UserControls "User Configuration", "System Configuration" & "Account Configuration". All these user controls have "Save" & "Cancel" buttons. On click of these buttons ...
0
votes
2answers
199 views

Mouse event not reaching UIElement

I'm just getting into C# and some unfamiliar piece of code so apologies if my question is not well asked. The problem in short - I have a six by eight grid of System.Windows.Controls.Canvas objects. ...
0
votes
2answers
58 views

I want the moment when a Key is “Down” in the PreviewKeyDown Event in WPF

when I jump into the PreviewKeyDown the char righthand to the Caret in my RichTextBox is not moved YET. I would like to say to this event do your stuff move the char to the rightside and THEN let me ...
0
votes
2answers
301 views

WPF - understanding RoutedEvents

Hi I'm learnign WPF and currently I'm reading about RoutedEvents. In book "Pro WPF in c#" there is some snipet of code which I present below <Window x:Class="RoutedEventsLearning.Window1" ...
0
votes
1answer
410 views

C#/WPF - RoutedEvent in WPF class that isn't a UIElement

I have a class that needs to notify that something significant has occured. The class is in a WPF-project, even though this specific class, is lookless (and doesn't inherit from UIElement, neither ...
0
votes
2answers
218 views

Add a delay to OnContactDown events for Surface controls

We're using the Controls.PreviewContactDown, PreviewContactUp, and PreviewContactChanged events to capture tagged items being placed, removed, and moved on the Surface, which works great in the ...
0
votes
1answer
279 views

Custom Routed Event Fails!

My application looks like this: 1 Window 2 Frame 3 Page 4 Control In Control (4) I have a custom routed event, which i want Frame (2) to handle. The event: public static ...
0
votes
1answer
1k views

WPF handling RoutedEvent from UserControl

I have a UserControl, default one generated by VS, only TextBlock is added: <UserControl x:Class="MyNameSpace.Presentation.MyControl" ...
0
votes
1answer
1k views

Can you use routed events with a MultiTrigger?

Does WPF support using a triggers that respond to routed events but only given a condition is met? For example, WPF supports triggering on routed events through Event Triggers. ie: <Button> ...