2012-12-04 24 views
7

2つのコントロールをコマンドパラメーターとしてバインドし、コマンドにobject[]として渡します。WPF CommandParameter MultiBinding values null

XAML:

<UserControl.Resources> 
     <C:MultiValueConverter x:Key="MultiParamConverter"></C:MultiValueConverter> 
    </UserControl.Resources> 

    <StackPanel Orientation="Vertical"> 
     <StackPanel Orientation="Horizontal"> 
      <Button Name="Expander" Content="+" Width="25" Margin="4,0,4,0" Command="{Binding ExpanderCommand}"> 
       <Button.CommandParameter> 
        <MultiBinding Converter="{StaticResource MultiParamConverter}"> 
         <Binding ElementName="Content"/> 
         <Binding ElementName="Expander"/> 
        </MultiBinding> 
       </Button.CommandParameter> 
      </Button> 
      <Label FontWeight="Bold">GENERAL INFORMATION</Label> 
     </StackPanel> 
     <StackPanel Name="Content" Orientation="Vertical" Visibility="Collapsed"> 
      <Label>Test</Label> 
     </StackPanel> 
    </StackPanel> 

コマンド:

public ICommand ExpanderCommand 
     { 
      get 
      { 
       return new RelayCommand(delegate(object param) 
        { 
         var args = (object[])param; 
         var content = (UIElement)args[0]; 
         var button = (Button)args[1]; 
         content.Visibility = (content.Visibility == Visibility.Visible) ? Visibility.Collapsed : Visibility.Visible; 
         button.Content = (content.Visibility == Visibility.Visible) ? "-" : "+"; 
        }); 
      } 
     } 

コンバータ:

public class MultiValueConverter : IMultiValueConverter 
    { 
     public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture) 
     { 
      return values; 
     } 

     public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture) 
     { 
      throw new NotImplementedException("No two way conversion, one way binding only."); 
     } 
    } 

は、基本的に何が起こっていることはバインディングが正常に動作しているようだということで、コンバータは戻っていますobject[]が正しい値を含んでいますが、コマンドがパラを実行するときmは、nullを除いて同じ数の要素を含むobject[]です。

object[]パラメータの値がnullに設定されている理由を教えていただけますか?

ありがとう、 アレックス。

答えて

15

これはやる:

public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture) 
{ 
    return values.ToArray(); 
} 

は、説明のために、このquestionを見てみましょう。

関連する問題