0
votes
4answers
116 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?
1
vote
1answer
68 views
MVVM Command Routing Between Controls
I currently have a main View with a Button and a ContentPresenter which is bound to a property of the ViewModel which is another View (and associated ViewModel). Is there way to route a command from …
0
votes
1answer
52 views
What is the difference between a RoutedCommand and a RouteUICommand?
I have tried to do some reading about it, but I failed to find documentation that explains the difference between RoutedCommand and RoutedUICommand satisfactorily.
1
vote
0answers
38 views
How to ovverride Copy command on WPF textbox?
Hello,
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 …
1
vote
4answers
165 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 …
2
votes
1answer
205 views
[WPF] Can’t add a routed command to a CheckBox
Hi,
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 …
0
votes
2answers
113 views
How to use the same RoutedCommand in distinct controls ?
Hi,
I a have 2 distinct UI elements in distinct files : a menuItem (in window.xaml) and a userControl (in foo.xaml).
Both have exactly the same logic : they are enabled only if a condition is …
0
votes
1answer
170 views
How to define a global custom RoutedCommand?
Hi,
I would like to use the same custom RoutedCommand for 2 buttons, which are in separate windows.
In order to not repeat the code, i want to define the command somewhere in the app and bind it to …
0
votes
3answers
139 views
Executing WPF routed commands manually
When executing a custom RoutedUICommand manually from code-behind, like this:
MyCommands.MyCommand.Execute(parameter, target)
do I need to call the CanExecute method first or is this already done …
3
votes
1answer
114 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 …
2
votes
2answers
1k 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 …
1
vote
1answer
302 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.
…
0
votes
0answers
66 views
Opening a new Window with InputGestures: main window steals focus
I have a simple UserControl which executes a routed command when user double clicks:
<UserControl.InputBindings>
<MouseBinding Command="someRoutedCommand" Gesture="LeftDoubleClick" />
…
4
votes
2answers
374 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
4answers
1k 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. …
