Tagged Questions
The routed-commands tag has no wiki summary.
14
votes
2answers
387 views
When to use events over commands in WPF?
Hi i have recently looked into WPF and started learning about Events and Commands. I typically use Commands on Button clicks which causes a method to Run in my "view model".
Is it possible to make ...
6
votes
2answers
602 views
Any MVVM frameworks that play nice with RoutedCommand?
RoutedCommand and RoutedUICommand have a lot going for them. There's baked-in support for text and for keyboard gestures. You can bind a collection of RoutedUICommands to a Menu's ItemsSource and it ...
6
votes
1answer
322 views
How to intercept execution of a RoutedCommand within the view? (WPF / MVVM)
In a WPF / MVVM application, I am trying to find a code-efficient way to set the main view cursor to Cursors.Wait prior to any lengthy operation and to restore it to the default cursor after ...
6
votes
1answer
528 views
What use has RoutedCommand' class constructor ownertype argument?
The constructor of the RoutedCommand has "owner type" as a last argument. What is its significance? When it is used?
MSDN documentation gives completely no clue about why it's needed and whether I ...
5
votes
6answers
2k views
WPF TextBox Interceping RoutedUICommands
I am trying to get Undo/Redo keyboard shortcuts working in my WPF application (I have my own custom functionality implemented using the Command Pattern). It seems, however, that the TextBox control ...
5
votes
1answer
1k views
How to move my RoutedCommand handler from View-codebehind to ViewModel?
The following RoutedCommand example works.
However, the handling for the button which executes the command is in the codebehind of the view. The way I understand MVVM, it should be in the ViewModel.
...
5
votes
4answers
5k views
WPF using custom RoutedUICommands or simple event handlers?
I was talking to someone today about picking a design pattern for how to handle logic in their WPF program and hoping that the SO community can help with further advice to make the decision easier. ...
5
votes
5answers
2k views
Do WPF Routed Commands solve a problem or make it worse?
From what I understand, the goal of the Command pattern is to help separate UI interaction from application logic. With properly implemented commands, a click on a "Print" menu item might result in a ...
4
votes
3answers
132 views
Should I check an ICommand's CanExecute method before calling Execute from procedural code?
When using ICommands in XAML, WPF uses the CanExecute method to enable or disable controls associated with the command. But what if I am calling Execute from procedural code? Should I first check ...
4
votes
2answers
1k views
Boolean CommandParameter in XAML
I have this code (which works just right):
<KeyBinding Key="Enter" Command="{Binding ReturnResultCommand}">
<KeyBinding.CommandParameter>
<s:Boolean>
...
4
votes
2answers
164 views
Objection to MVVM pattern is lack of IDE support - do any of the frameworks help with that?
Some of our developers don't like the commanding in MVVM because there is no support in VS2010 IDE to help you navigate from the Command binding in xaml to the actual code implementing the behavior. ...
4
votes
1answer
384 views
What is the difference between a RoutedCommand and a RoutedUICommand?
I have tried to do some reading about it, but I failed to find documentation that explains the difference between RoutedCommand and RoutedUICommand satisfactorily.
4
votes
2answers
548 views
What is the best approach to binding commands in a ViewModel to elements in the View?
Anyone who has tried to implement RoutedCommands in WPF using M-V-VM has undoubtedly run into issues. Commands (non-UI commands that is) should be implemented in the ViewModel. For instance if I ...
3
votes
1answer
84 views
Is there any way to alias commands in WPF?
Is there any way to effectively "alias" commands in WPF ? My situation is this : I've created an application that uses ApplicationCommands.Delete in the context of a graphical editor that has a number ...
3
votes
2answers
874 views
WPF Commands, How to declare Application level commands?
I'm interested in creating commands that are available from anywhere in my WPF application.
I'd like them to work in the same way as Cut, Copy, Paste and the other Application level commands, ie:
...
3
votes
2answers
201 views
How to debug commands
How do I debug a RoutedUICommand when the associated UIElement is disabled.
For example, consider the ContextMenu. Since it exists in a different VisualTree, a command written with the menu item ...
3
votes
1answer
874 views
AvalonDock + UserControl + DataGrid + ContextMenu command routing issue
I'm getting weird behavior with command propagation from MenuItems of ContextMenu.
I have the following kind of layout: ContextMenu is set for each DataGridRow of DataGrid inside UserControl, which ...
3
votes
2answers
265 views
What should be owner type of a routed command?
I am using wpf Custom Commands. While writing a custom Command, one need to define the owner type. It's Description says that it is the type that is registering the command. I was seeing some sample ...
3
votes
1answer
621 views
WPF Two Commands handlers, One Command
Im deriving from a third party control. It is implementing ApplicationCommands.SelectAll. However the behaviour i want is slightly different. there is no virtual method i can override, and when i ...
3
votes
1answer
146 views
WPF - how do I extend (or work in parallel with) the built-in command mechanism?
Please excuse me if this is a dumb question - I have read a dozen articles on the WPF command infrastructure and I am more confused than ever.
I understand that I can use the built-in commands to ...
3
votes
2answers
499 views
How can a CanExecute of a commandBinding fire once the element has been removed from the visual tree?
I have a related question here where i have a user control with a command binding. The user control has being removed from the visual tree, yet the canExecute is still firing. My understanding of the ...
3
votes
2answers
4k views
WPF - Why do ContextMenu items work for ListBox but not ItemsControl?
Items in a list have context menus. The context menu items are bound to routed commands.
The context menu items work correctly if the list control is a ListBox, but as soon as I downgrade it to an ...
2
votes
1answer
77 views
WPF: ApplicationCommands seem to ignore CommandTarget
I have a TextBox and a ListView in my window, and I'd like to move the ListView's selection up and down while the TextBox has focus:
However, I don't seem to get my CommandTarget declarations ...
2
votes
1answer
58 views
How is the RoutedCommand.Name property used?
The RoutedCommand class has a Name property that can be set in the contructor. MSDN has this to say about RoutedCommand.Name:
This property can be used when referencing a RoutedCommand in XAML.
...
2
votes
1answer
686 views
Command routing for Keyboard shortcuts
Basically I want to create a keyboard shortcut which is valid within the scope of a window, and not just enabled when focus is within the control that binds it.
in more detail....
I have a window ...
2
votes
2answers
257 views
WPF Architecture Confusion RE: Routed Commands, Events, and Gestures
In learning WPF, I've been reading scads of books and web sites. One thing that seems to keep evading me is how we are supposed to properly wire up RoutedCommands. In one article, the author pointed ...
2
votes
1answer
71 views
Find destination of a RoutedEvent
When I execute a routed command, let's say:
ApplicationCommands.Undo.Execute(null, this);
WPF does some magic to find the proper CommandBinding on which it executes the ExecutedRoutedEventHandler.
...
2
votes
1answer
52 views
When will the CanExcute event be raised by the CommandSource
When will the CanExecute event be ideally raised by the control that realizes the ICommandSource interface?? I tried to add a breakpoint to the handler to check when it is getting raised and it seems ...
2
votes
1answer
156 views
How to launch RoutedCommand on application level in multiple windows pattern?
I have a multiple windows in an application, for instance, window1, window2 and window3.
one RoutedCommand (with KeyGesture F11) was binded in window1.
How to launch that routed command by pressing ...
2
votes
3answers
746 views
Is it possible to have CommandManager requery only specific WPF command instead of all?
I'm trying to implement a highly responsive UI for my MVVM application, so I've chosen to have all command handlers automatically execute in a BackgroundWorker so they don't block the UI.
But at the ...
2
votes
1answer
801 views
DelegateCommand vs RoutedCommand and gestures - WPF
is there anyway for DelegateCommand's to support gestures when building a composite WPF app? I'm trying to create a command used by a MenuItem and also a Button, which can be accessed through a ...
2
votes
2answers
554 views
RoutedUICommand PreviewExecuted Bug?
I'm building an application using the MVVM design pattern and I want to make use of the RoutedUICommands defined in the ApplicationCommands class. Since the CommandBindings property of a View (read ...
2
votes
1answer
525 views
multi key gesture in wpf
I have a RoutedUICommand called Comment Selection. I need to add an input gesture for this command as it is in VIsual Studio, ie. (Ctrl+K, Ctrl+C).
How can I do this? Plz help me. (Keep VS ...
2
votes
4answers
910 views
How do I programatically fire a command
i have an ICommand that I want to fire (make the execute go) from code; how do I do this?
2
votes
1answer
566 views
How to ovverride Copy command on WPF textbox?
I would like to override the behavior of RoutedUICommand "Copy" of a WPF TextBox.
Is it possible without creating a new TextBoxExtended class that inherits from TextBox?
I have reached that point, ...
2
votes
1answer
969 views
Can't add a routed command to a CheckBox in WPF
A custom RoutedCommand is used by some menuItems;
I would like to use the same RoutedCommand with checkboxes :
<CheckBox Command="local:MainWindow.SwitchContextCommand">
The compiler gives no ...
2
votes
2answers
551 views
How do I pass a specific viewmodel object in a button's CommandParam?
I have a simple WPF program using the Master-Detail UI pattern, where the Detail shows the currently selected item of a collection in the Master pane. I'm using MVVM, and each XAML page is backed by ...
1
vote
0answers
31 views
Disabling CommandManager RequerySuggested Event
I want to test my project performance without using CommandManager RequerySuggested.
I use the following codes to disable CommandManager from firing RequerySuggested Event.
It removes all event ...
1
vote
1answer
35 views
Issue when using Routed Commands with a Frame
My WPF project has a main window with a number of buttons and a frame. I display a page within the frame, and the buttons above use routed commands in order to call methods present in the page below. ...
1
vote
0answers
105 views
Can I Raise CanExecute on MediaCommands without using InvalidateRequerySuggested()?
I have some custom CommandBindings that determine the CanExecute status of various MediaCommands (Play, Pause, etc). I'd like to trigger the CanExecute handler to be called at certain points. However, ...
1
vote
2answers
247 views
WPF - Custom Control + ICommand (How do I Implement this)?
Basically, I have a custom control FooControl.
public class FooControl : ItemsControl
{
//Code
}
I need to add some event handling, but rather than using a RoutedEvent I'd much more prefer to ...
1
vote
1answer
44 views
Which things are possible with this set of SSH Shell Commands? [closed]
A certain webhosting package comes with a set of "SSH Chrooted SHELL commands". I wondered what these do and whether its worth the extra cost and time investment for any professional programmer to ...
1
vote
0answers
273 views
Bind to rounted command in Caliburn.Micro / disable delete command in richTextBox in user control
is it possible make binding on rountend commads in caliburn micro framework?
I would like make a binding on Delete command because I need disable this command in richTextBoxControl which is in user ...
1
vote
1answer
324 views
RoutedCommands Executed and PreviewExecuted events
My problem is that I would like to handle a commands in multiple places. For instance I have my custom UserControl where a Button is bound to some command. I have a command binding in that control but ...
1
vote
1answer
181 views
WPF application with context sensitive toolbar
I want to design an application much like Visual studio where the toolbars are context sensitive to the workspace area and their are common toolbars which have context sensitive functionality like ...
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
343 views
Can I use Caliburn to bind to RoutedCommands?
What's the best way to use WPF's built-in RoutedCommands with Caliburn?
For example, in my shell I have an Edit menu with a Copy item in it attached to the standard command found in ...
1
vote
3answers
743 views
WPF Routed Command with Bindings per-Tab
I intended to disable and enable the Buttons outside the TabControl, just like those inside the TabItem when the current tab is changed. But the CommandBindings of the TabItem do not seem to impact ...
1
vote
1answer
317 views
RoutedCommand.CanExecuteChanged event not consistently firing inside ElementHost
(Background: I'm porting a WinForms app to WPF in stages. At the present time, I still have a WinForms main form with an ElementHost that has WPF content in it.)
I'd like my app to be told when ...
1
vote
1answer
397 views
WPF: Change the text of menuitem on context menu
I have ContextMenu in XAML with the following MenuItem:
<MenuItem Command="local:MyClass.MyCommand" "/>
I'd like to change the Header of MenuItem by somehow changing the Text of ...