Tagged Questions
RelayCommand is an implementation of the .NET ICommand interface made and described by WPF expert Josh Smith.
28
votes
3answers
18k 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
5answers
3k views
Is Josh Smith's implementation of the RelayCommand flawed?
Consider the reference article, specifically the example implementation of a RelayCommand (In Figure 3). (No need to read through the entire article for this question.)
In general, I think the ...
7
votes
5answers
4k views
Simplifying RelayCommand/DelegateCommand in WPF MVVM ViewModels
If you're doing MVVM and using commands, you'll often see ICommand properties on the ViewModel that are backed by private RelayCommand or DelegateCommand fields, like this example from the original ...
6
votes
1answer
6k views
5
votes
2answers
4k views
MVVM Light RelayCommand Parameters
I'm having an issue with passing a parameter to a relaycommand using the GalaSoft MVVM Light framework. I know that mvvm light's implementation of relaycommand doesn't use lambda parameters, so I did ...
5
votes
2answers
255 views
RelayCommand called in “old” DataContext
I am using RelayCommands in my ViewModels to ged rid of the code behinds. The RelayCommands are working, except in this situation: the ViewModel in which the RelayCommands are defined is changed with ...
5
votes
1answer
415 views
Why is param in this lambda expression?
The MSDN magazine article by Josh Smith on MVVM contains a lambda expression I don't completely understand. What is the purpose of param in this code?
_saveCommand = new RelayCommand(param => ...
5
votes
3answers
3k views
CanExecute on RelayCommand<T> not working
I'm writing a WPF 4 app (with VS2010 RC) using MVVM Light V3 alpha 3 and am running into some weird behaviour here...
I have a command that opens a Window, and that Window creates the ViewModel and ...
4
votes
3answers
293 views
Why are RelayCommand or DelegateCommand not part of WPF? [closed]
The Model-View-ViewModel (MVVM) approach seem to be the front-runner pattern in WPF UI development. Almost every article I read implies that it is the best-practice. Usage of RelayCommand or ...
4
votes
4answers
710 views
Command binding in multiwindow WPF app
My application can have multiple designer windows. Each window constitutes of several user controls which communicates dynamically with the help of RelayCommands. I created the following class as the ...
3
votes
2answers
272 views
What is the actual task of CanExecuteChanged and CommandManager.RequerySuggested?
I got the following code from Josh Smith's MVVM tutorial.
Can anyone provide a quick explanation of what this code actually does?
public event EventHandler CanExecuteChanged
{
add { ...
3
votes
1answer
2k views
Programatic re-evaluation of MVVM command's “can execute” state
I'm writing a WPF application using the MVVM pattern, based on the following article: WPF Apps With The Model-View-ViewModel Design Pattern
I have two buttons on my View with the buttons' "Command" ...
2
votes
2answers
196 views
Why use a RelayCommand or DelegateCommand instead of just implementing ICommand?
I'm just learning about MVVM in WPF, I'm completely new both to WPF as to MVVM (I understand how it works, but have never used it...)
Every single tutorial/article I find on the web, it uses either ...
2
votes
1answer
352 views
MVVM Relay Command does not fire in Silverlight RIA app
I am developing a Silverlight 4 RIA (Entity framework) application and I am having issues using a MVVMLight RelayCommand. I have used them before without problem but there seems to be an issue after I ...
2
votes
2answers
196 views
Why does RelayCommand<T>.Execute take an object instead of a T?
This hasn't done anything but cause the need for what would otherwise be unnecessary casting (or rather, caused me to pull down the codebase and make the change myself). Is there a reason for doing ...
2
votes
2answers
4k views
Pass CommandParameter to Command in Silverlight using MVVM
I'm just learning Silverlight and looking at MVVM and Commanding.
Ok, so I have seen the basic RelayCommand implementation:
public class RelayCommand : ICommand
{
private readonly Action ...
2
votes
1answer
326 views
Using RelayCommand to send complex data to a MVVM model
I have a complex query interface that I need to be passed on via a RelayCommand to my Model. This consists of some comboboxes, checkboxes and text inputs.
I can easily pass on a single ...
2
votes
2answers
513 views
Firing RelayCommand from CodeBehind bound to VM
I wonder if I can create a RelayCommand on my ViewModel like this:
public RelayCommand<IList<VectorViewModel>> MyCommand { get; set; }
ctor:
MyCommand = new ...
2
votes
1answer
898 views
Can't pass a single parameter to lambda function in MVVM Light Toolkit's RelayCommand
I don't know if there's a difference between Josh Smith's and Laurent Bugnion's implementations of RelayCommand or not, but everywhere I've looked, it sounds like the Execute portion of RelayCommand ...
2
votes
1answer
565 views
How do you send in the LayoutRoot into a RelayCommand via a EventToCommand?
Grid example with the trigger:
<Grid x:Name="LayoutRoot" DataContext="{Binding ProjectGrid, Source={StaticResource Locator}}">
<i:Interaction.Triggers>
<i:EventTrigger ...
2
votes
2answers
376 views
WPF relaycommand from usercontrol
I'm new to WPF and in the spirit of trying to do things the correct way have tried to implement MVVM in my application. I've made use of the frequently mentioned article by Josh Smith, and apart from ...
1
vote
2answers
51 views
Binding generic type through MVVM Light RelayCommand
I am using Implicit Data Templates which are applied to the items of an ItemsControl:
<ItemsControl ItemsSource="{Binding Path=CategoryAttributeVMs}"/>
<DataTemplate DataType="{x:Type ...
1
vote
1answer
65 views
How does WPF determine when to Invalidate using the CommandManager (CommandManager.InvalidateRequerySuggested)?
I've been using the RelayCommand a bit here and there, and it got me to wonder and want to know... when exactly does the CommandManager.InvalidateRequerySuggested() get called by WPF?
My guess is ...
1
vote
1answer
87 views
Are there any performance implications with CanExecuteCommand?
What are the performance implications of using the CanExecuteCommand of the ICommand object. Is the method executed over and over again?
I need to iterate through a collection of about 200 objects ...
1
vote
1answer
149 views
How or when to cleanup RelayCommand objects in WPF/MVVM?
I am using the standard Josh Smith implementation of RelayCommand to implement ICommands in my WPF/MVVM application. See: WPF Apps with the MVVM Design Pattern
A few of my CanExecute methods take a ...
1
vote
1answer
309 views
RelayCommand RaiseCanExecuteChanged() fails
I am using a couple of Buttons bound to RelayCommands initialized with CanExecute delegates.
RelayCommand DeleteCommand;
bool CanDelete()
{
return BoolProp1 && BoolProp2;
}
...
...
1
vote
3answers
194 views
Resetting SelectedItem on a Listbox bound to a RelayCommand on a ViewModel
Using the EventToCommand behaviour that comes with MVVM Light I am binding the SelectedItem of a ListBox to a RelayCommand on a ViewModel
All works great in my Windows Phone 7 app except that after ...
1
vote
5answers
506 views
How to bind application commands to view model(WPF)?
I have already read Josh Smiths article about binding commands to view model using RelayCommand. However I need to bind ApplicationCommands.Save to a view model so that when a user clicks the save ...
1
vote
1answer
1k views
CanExecute and CanExecuteChanged, I must implement these with a RelayCommand?
I am using MVVM-Light and i have my relay command working perfectly, I have just read that i should be implementing CanExecuteChanged and CanExecute. Although i am unable to find a good example.
Does ...
1
vote
2answers
253 views
What is the best way to handel click-events in MVVM?
What is the best way to handel click-events in MVVM? Are there a best way?
I have found two solutions:
with a relaycommand:
RelayCommand buttonAddCategory_Click;
public ICommand ...
1
vote
1answer
398 views
Correct way to use a Interaction Trigger on SelectionChanged Event
I have a command wired to the event such that it does fire, but what I get in the CommandParameter is the previously selected item, or maybe it's the selected item before the SelectionChanged ...
1
vote
1answer
179 views
How do I test Relaycommand?
I'm reading this
MSDN Article about MVVM. I'm currently looking at the RelayCommand in figure #15. Pretend I wanted to test this SaveCommand. How would I do that? I'm using NUnit and Rhino Mocks 3.6
1
vote
2answers
772 views
Prevent Save when Validation Errors occur on WPF DataGrid
Currently, I have a DataGrid which is bound to some data in my ViewModel. I have ValidationRules set up for the Rows, and the Columns. What I would like to do is prevent the user from saving the file ...
1
vote
0answers
286 views
RelayCommand not firing from TreeViewItem ItemTemplate
I have a UserControl that contains a TreeView and the TreeViewItem has a custom ItemTemplate. The Template has a HyperlinkButton that I need to call a RelayCommand, but it never fires.
I am able ...
1
vote
3answers
743 views
RelayCommand sender from ItemsControl item
I've been using MVVM's RelayCommand with success to bind actions to XAML, but I'm having a small problem with my ItemsControl.
<ItemsControl ItemsSource="{Binding Devices}" >
...
1
vote
3answers
523 views
How to implement menuitems that depend on current selection in WPF MVVM explorer-like application
I am new to WPF and MVVM, and I am working on an application utilizing both. The application is similar to windows explorer, so consider an app with a main window with menu (ShellViewModel), a tree ...
1
vote
1answer
649 views
Proper way in MVVM to direct the handling of a RelayCommand to a view model parent
I'm very new to MVVM and even WPF to some degree so bear with me...
I've got a MVVM application that has a main window, containing a viewmodel instance of different types depending on application ...
0
votes
3answers
57 views
how to use EventToCommand in a ItemContainerStyle?
<ListBox Grid.Row="1" ItemsSource="{Binding Source}" SelectedItem="{Binding SelectedItem,Mode=TwoWay}" DisplayMemberPath="Name">
<ListBox.ItemContainerStyle>
...
0
votes
1answer
89 views
RelayCommand with parameters
I am using the MVVM Light toolkit in my application and trying to learn about passing a command.
I have the following XAML code snippet:
<s:ScatterView x:Name="swPicture" ItemsSource="{Binding ...
0
votes
0answers
36 views
outer buttons's CanExecute Property set to false disables the inner button also
As everybody knows when you bind a command (relay command) to a button the "CanExecute" Property of the command -if set to false- makes the button unclickable and changes its face to a grey button
...
0
votes
1answer
82 views
SL4: Passing element in View as parameter to Command in ViewModel
We have a user control with context menu on one of its child controls.
The Command is bound to a RelayCommand in the ViewModel.
However, the command has to act on another child control in the View.
...
0
votes
1answer
62 views
object sender is always null in RelayCommand
I am using RelayCommand to handle a button click, I need to get the sender parameter but it is always null, any idea why?
ViewModel.cs
private RelayCommand _expandClickCommand;
public ...
0
votes
1answer
83 views
Control Template event with Relay Command
I've got problem triggering events in a control template which is in another control template and using MVVM light relay command.
Here is the case:
main_control is templated in a generic.xaml style.
...
0
votes
1answer
78 views
Why is my CommandParameter sometimes (but not always) null despite being declared in markup?
I have code that looks roughly like this:
<MenuItem Header="Do Something"
Command="{Binding ChangeSomeEnumValue}"
CommandParameter="{x:Static someNamespace:SomeEnum.EnumValue}" ...
0
votes
1answer
69 views
Why is my ContextMenu item bound to a RelayCommand is always disabled?
I'm working on my first big WPF MVVM application now, which uses MVVM Light Toolkit in combination with Josh Smith's RelayCommand.
The problem I run into is that I bound this command to an item in a ...
0
votes
3answers
249 views
Silverlight UserControl in MVVM with RelayCommand<T> - example?
Has somebody a good example to create a UserControl, and then bind commands to it?
My problem is to forward the command to a control in the UserControl, for example to a TreeView's Drop event. It's ...
0
votes
1answer
200 views
“specified cast is not valid” GalaSoft.MvvmLight.Command.RelayCommand`1.Execute(Object parameter)
I'm pretty new to using MVVM Light so hopefully this is a simple fix, although I have spent most of the day trying to track down an answer :-(
In my xaml
<sdk:DataGrid Name="m_dgResults" ...
0
votes
1answer
167 views
Command not working for menu item
I need help to figure out why my command doesn't work on menu item. I've been googling the solutions for this, and found few too in here. But probably because of my knowledge (beginner WPF), I still ...
0
votes
1answer
130 views
RelayCommand property in a control (SL, MVVM)
is it possible to create a Silverlight control, which one has a bindable RelayCommand<MyType> property?
If yes, please show me an example!
0
votes
1answer
307 views
mvvm-Light: Showing another View from my current Viewmodel and closing a view from my viewmodel?
I have another view setup and ready and waiting with its viewmodel. My RelayCommand arrives in my "Current" viewmodel. What is the best way to show the new view from my current viewmodel?
I have been ...