2012-02-06 3 views
2

my 명령과 함께 명령 매개 변수를 전달하려고합니다. 나는 일반적으로 작동하는 명령을 가지고 있지만 매개 변수를 전달하는 것은 나에게 잘 맞지 않는 것처럼 보인다.명령 매개 변수 전달

내 XAML의 계층 적 데이터에서 UserName 속성을 전달하려고합니다. 내가 여기서 잘못하고있는 것은 무엇인가.

내가받을 및 명령 문을 컴파일하려고 오류 :

'System.Action'에서 '람다 식'

<HierarchicalDataTemplate 
    DataType="{x:Type viewModel:UsersViewModel}" 
    ItemsSource="{Binding Children}"> 
    <StackPanel Orientation="Horizontal"> 
     <TextBlock Text="{Binding UserName}"> 
      <TextBlock.ContextMenu> 
        <ContextMenu> 
         <MenuItem Header="Edit" Command="{Binding EditCommand}" CommandParameter="{Binding UserName}"/> 
         <MenuItem Header="Delete"/> 
        </ContextMenu> 
       </TextBlock.ContextMenu> 
     </TextBlock> 
    </StackPanel> 
</HierarchicalDataTemplate> 
private RelayCommand _editCommand; 
    public ICommand EditCommand 
    { 
     get 
     { 
      if (_editCommand== null) 
      { 
       _editCommand= new RelayCommand(param => this.LoadUser(object parameter)); 
      } 
      return _editCommand; 
     } 
    } 

    public void LoadUser(object username) 
    { 

    } 

RelayCommand 클래스에서 변환 할 수 없습니다

public class RelayCommand : ICommand 
{ 
    #region Fields 

    readonly Action<object> _execute; 
    readonly Predicate<object> _canExecute; 

    #endregion // Fields 

    #region Constructors 

    public RelayCommand(Action<object> execute) 
     : this(execute, null) 
    { 
    } 

    public RelayCommand(Action<object> execute, Predicate<object> canExecute) 
    { 
     if (execute == null) 
      throw new ArgumentNullException("execute"); 

     _execute = execute; 
     _canExecute = canExecute; 
    } 
    #endregion // Constructors 

    #region ICommand Members 

    [DebuggerStepThrough] 
    public bool CanExecute(object parameter) 
    { 
     return _canExecute == null ? true : _canExecute(parameter); 
    } 

    public event EventHandler CanExecuteChanged 
    { 
     add { CommandManager.RequerySuggested += value; } 
     remove { CommandManager.RequerySuggested -= value; } 
    } 

    public void Execute(object parameter) 
    { 
     _execute(parameter); 
    } 
    #endregion 
} 

도움 주셔서 감사합니다!

답변

3
new RelayCommand(param => this.LoadUser(object parameter)); 

이가 있어야하지 : 그냥 여기 new RelayCommand(this.LoadUser);

비슷한 질문에 대한 new RelayCommand(param => this.LoadUser(object parameter));을 대체 내가 볼

new RelayCommand(param => this.LoadUser(param)); 
+0

, 나는 람다의 – rreeves

+1

@BatMasterson에 읽을 필요가 :이 외설 그 단순한 expiration에 많은 것,'Actions'은 단지 무효 메소드이고, 오른쪽은 당신이하고 싶은 것을 실행하는 메소드 몸체입니다. ['Funcs'] (http://msdn.microsoft.com/en-us/library/bb534960.aspx)는 반환 값이있는 메서드입니다. –