Tagged Questions
The routedcommand tag has no wiki summary.
28
votes
3answers
19k views
MVVM Routed and Relay Command
What is the Difference between the RoutedCommand and RelayCommand ?
When to use RoutedCommand and when to use RelayCommand in MVVM pattern ?
14
votes
2answers
6k views
WPF ICommand vs RoutedCommand
Let's have a button Command property bound to a custom command.
When should I implement ICommand and when derive from RoutedCommand? I see that RoutedCommand implements ICommand.
In which case could ...
1
vote
2answers
421 views
WPF - Coupling a GlobalResource to a ViewModel
I have a WPF application with a NotifyIcon defined in a ResourceDictionary that is added to Application.Current.Resources on App start.
I am using the MVVM-Light framework and I want to bind the ...
1
vote
1answer
528 views
WPF menus with shortcuts and custom RoutedCommand
Im new to WPF so i might be missing something. I have a simple function in my MainWindow class called StartService. I wanted to add a menu item "Start Service" with a shortcut Ctrl+S to my ...
1
vote
1answer
71 views
How do the RoutedCommand constructors differ from eachother?
The RoutedCommand in WPF has 3 overloaded constructors.
Consider the following:
public static RoutedCommand AddTextFieldCommand = new RoutedCommand();
vs
public static RoutedCommand ...
1
vote
2answers
7k views
Setting Command Target in XAML
I am having a hard time understanding the CommandTarget property for a RoutedCommand.
Basically, I have some static commands that have implementations in a user control (not the window). I create a ...
0
votes
0answers
16 views
Routedcommand not active int contextmenu
i'd like to know more about routed commands and the way they are bind...
i have this example, Routed command that i want to bind it to a textbox to get the value in it, but the text box appears in a ...
0
votes
0answers
56 views
In WPF how can you listen for changes to the text property of a RoutedUICommand without causing a memory leak?
In WPF, the RoutedUICommand is not a dependency object, nor does it implement INotifyPropertyChanged meaning if you were to bind its Text property to something in the UI such as a MenuItem's header, ...
0
votes
3answers
301 views
WPF Routed Command only fires sometimes
I have some RoutedCommands for commands like control-A, copy paste and they all work fine.
Then I added 4 more routedcommands to move object up down left and right in the canvas using arrowkeys, they ...
0
votes
0answers
196 views
Adding CommandBindings to ContextMenus
I have a treeview which contains a number of different types of node.
Each node in the tree has a context menu that is created dynamically by binding it to an array of ICommand objects in the ...
0
votes
2answers
135 views
Unable to implement ICommandSource in VB
Has anyone ever tried to implement ICommandSource with VB?
The examples provided by Microsoft are in C#, and since VB doesn't allow implicit implementation this interface is like inachievable in VB!!
...