c# - 如何将变量作为 CommandParameter 传递

标签 c# wpf mvvm command commandparameter

我正在尝试将 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 中创建一个属性,而不是使用私有(private)局部变量名称,但这也没有用。 对象参数 在对 CanExecute 的调用中始终显示 null 并且按钮永远不会启用。如果我将 CommandParameter 值更改为 Hello,那么我会在对 CanExecute 的调用中收到 Hello,所以我'我不确定为什么变量不起作用。任何帮助将不胜感激。

更新:我也试过为模型创建一个公共(public)属性(我真的不想公开模型,但只是尝试看看它是否有效,但它没有)。

// 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

最佳答案

CommandParameter 始终为 null 还是您只在第一次执行时检查?

在这种情况下,您声明属性的顺序似乎很重要,因为设置 Command 属性会导致 CanExecute 在设置 CommandParameter 之前立即触发。

尝试将 CommandParameter 属性移到 Command 属性之前:

<Button Content="Edit" HorizontalAlignment="Right" Height="20"  Width="80"
 CommandParameter="{Binding PersonModelProp}" 
 Command="{Binding EditPersonCommand}" />

另请参阅 herehere .

编辑

为确保正确引发您的事件,您应该在 PersonModelProp 值更改时引发 CanExecuteChanged 事件。

命令:

public class EditPersonCommand : ICommand
{
  public bool CanExecute(object parameter)
  {
     PersonModel p = parameter as PersonModel;
     return p != null && p.Age > 0;
  }

  public event EventHandler CanExecuteChanged;

  public void Execute(object parameter) 
  {
      //command implementation
  }

  public void RaiseCanExecuteChanged()
  {
      var handler = CanExecuteChanged;
      if(handler != null)
      {
          handler(this, EventArgs.Empty);
      }
  }
}

和 View 模型:

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())
  {
      _EditPersonCommand = new EditPersonCommand();
  }

  public PersonViewModel(PersonModel personModel)
  {
     _PersonModel = personModel;
  }

  public ICommand EditPersonCommand
  {
     get
     {
         return _EditPersonCommand;
     }
  }

  public PersonModel PersonModelProp
  {
      get
      {
         return _PersonModel;
      }
      set
      {
         _PersonModel = value;
         OnPropertyChanged("PersonModelProp");
         EditPersonCommand.RaiseCanExecuteChanged();
      }
    }
}

关于c# - 如何将变量作为 CommandParameter 传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12371253/

相关文章:

c# - 从 DateTimePicker 中删除日期和月份之前的空格

C# 跨线程静态变量访问

wpf - 设置新行的内容 Datagrid

android - 未设置 LiveData,永远不会调用观察者

c# - 威胁已经被清除了。对于response.redirect。在以下代码中,当 session 为空时如何重定向

c# - 在 "Presenter View"模式下形状操作变慢

wpf - WPF多列 ListView 的最佳方法

c# - 高效移动文件

mvvm - MVVM交叉行为和InvokeCommandAction

c# - CallMethodAction 绑定(bind)到 Button 失败