ViewModelからコマンドへのパラメーターとして変数を送信しようとしています。コマンドは次のようになります。
public class EditPersonCommand : ICommand
{
private bool _CanExecute = false;
public bool CanExecute(object parameter)
{
PersonModel p = parameter as PersonModel;
CanExecuteProperty = (p != null) && (p.Age > 0);
return CanExecuteProperty;
}
public event EventHandler CanExecuteChanged;
public void Execute(object parameter) { }
private bool CanExecuteProperty
{
get { return _CanExecute; }
set
{
if (_CanExecute != value)
{
_CanExecute = value;
EventHandler can_execute = CanExecuteChanged;
if (can_execute != null)
{
can_execute.Invoke(this, EventArgs.Empty);
}
}
}
}
}
ViewModelは次のようになります。
public class PersonViewModel : ViewModelBase
{
private PersonModel _PersonModel;
private EditPersonCommand _EditPersonCommand;
///<remarks>
/// must use the parameterless constructor to satisfy <Window.Resources>
///</remarks>
public PersonViewModel()
: this(new PersonModel())
{
}
public PersonViewModel(PersonModel personModel)
{
_PersonModel = personModel;
}
public ICommand EditPersonCommand
{
get
{
if (_EditPersonCommand == null)
{
_EditPersonCommand = new EditPersonCommand();
}
return _EditPersonCommand;
}
}
}
xamlは次のようになります。
<Button Content="Edit" HorizontalAlignment="Right" Height="20" Width="80"
Command="{Binding EditPersonCommand}"
CommandParameter="{Binding _PersonModel}" />
プライベートローカル変数名を使用する代わりに、ViewModelでプロパティを作成しようとしましたが、どちらも機能しませんでした。呼び出しには常にが表示され、object parameter
ボタンが有効になることはありません。値をに変更すると、への呼び出しで受け取るので、変数が機能しない理由がわかりません。どんな助けでもいただければ幸いです。null
CanExecute
CommandParameter
Hello
Hello
CanExecute
更新: モデルにパブリックプロパティを作成することも試みました(モデルを公開したくはありませんが、機能するかどうかを確認するために試しましたが、機能しません)。
// Added this to the ViewModel
public PersonModel PersonModelProp
{
get
{
return _PersonModel;
}
set
{
_PersonModel = value;
OnPropertyChanged("PersonModelProp");
}
}
そして、xamlをこれに変更しました:
<Button Content="Edit" HorizontalAlignment="Right" Height="20" Width="80"
Command="{Binding EditPersonCommand}"
CommandParameter="{Binding PersonModelProp}" />
しかし、それでも運はありません。ViewModelは実装しますINotifyPropertyChanged