我想通过xaml中的commandparameter将serval参数传递给命令。
<i:InvokeCommandAction Command="{Binding HideLineCommand, ElementName=militaryLineAction}"
CommandParameter="{Binding ID, ElementName=linesSelector}"/>
在上面的示例中,我想将其他变量传递给ID变量旁边的命令。我怎样才能实现它?非常感谢。
答案 0 :(得分:5)
您可以将 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>
SourceData
是Person对象。
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)
{
}
}