Top "Relaycommand" questions

RelayCommand is an implementation of the .NET ICommand interface made and described by WPF expert Josh Smith.

Passing Command Parameters

I'm trying to pass a command parameter with my command. I have commands in general working but passing a parameter …

c# wpf xaml icommand relaycommand
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 …

wpf icommand relaycommand
Is Josh Smith's implementation of the RelayCommand flawed?

Consider the reference Josh Smith' article WPF Apps With The Model-View-ViewModel Design Pattern, specifically the example implementation of a RelayCommand (…

wpf mvvm weak-references icommand relaycommand
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 …

mvvm mvvm-light relaycommand canexecute
How to get the sender of the InputBinding-Command

I have this xaml code: <Window.InputBindings> <KeyBinding Command="{Binding Path=KeyEnterCommand}" Key="Enter" /> </Window.…

wpf command key-bindings relaycommand
is asynchronous version of relaycommand required in order to run async methods correctly

I have the following code defined in a viewmodel. I think that the SaveAsync of type Func<Task> …

c# .net asynchronous async-await relaycommand
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 …

c# wpf mvvm relaycommand
RelayCommand's reference is not found

I have a WPF application in which i'd like to change its design pattern to MVVM.I have used this …

c# wpf mvvm command relaycommand
Commands using Action<> and Func<>

I am working through MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF and have hit a snag in …

c# wpf mvvm icommand relaycommand
Firing RelayCommand from CodeBehind bound to VM

I wonder if I can create a RelayCommand on my ViewModel like this: public RelayCommand<IList<VectorViewModel>&…

.net wpf mvvm mvvm-light relaycommand