4

我想通过 xaml 中的命令参数将薮参数传递给命令。

<i:InvokeCommandAction Command="{Binding HideLineCommand, ElementName=militaryLineAction}"
                       CommandParameter="{Binding ID, ElementName=linesSelector}"/>

在上面的示例中,我想将其他变量传递给 ID 变量旁边的命令。我怎样才能实现它?十分感谢。

4

1 回答 1

7

您可以将MultiBinding转换器一起使用。

检查这个例子。

假设您有 Person 类。

public class Person
{
    public string Name { get; set; }
    public int Age { get; set; }
}

并且您希望此类作为您的命令参数。

您的 XAML 应如下所示:

<Button Content="Start"
                DataContext="{Binding SourceData}"
                >
            <i:Interaction.Triggers>
                <i:EventTrigger EventName="Click">
                    <i:InvokeCommandAction Command="{Binding SendStatus, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}}">
                        <i:InvokeCommandAction.CommandParameter>
                            <MultiBinding Converter="{StaticResource myPersonConverter}">
                                <MultiBinding.Bindings>
                                    <Binding Path="Name" />
                                    <Binding Path="Age" />
                                </MultiBinding.Bindings>
                            </MultiBinding>
                        </i:InvokeCommandAction.CommandParameter>
                    </i:InvokeCommandAction>
                </i:EventTrigger>
            </i:Interaction.Triggers>
        </Button>

SourceDataPerson 对象在哪里。

并且myPersonConverter是一个 PersonConverter 对象。

public class PersonConverter : IMultiValueConverter
    {   
        public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            if (values != null && values.Length == 2)
            {
                string name = values[0].ToString();
                int age = (int)values[1];

                return new Person { Name = name, Age = age }; 
            }
            return null;
        }

        public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }

在您的命令中,您可以使用 Person 对象作为参数:

    public ICommand SendStatus { get; private set; }
    private void OnSendStatus(object param)
    {
        Person p = param as Person;
        if (p != null)
        {

        }
    }
于 2012-11-14T18:41:08.770 回答