在WPF中传递多个参数,包括Type到ViewModel



如何将XAML中的两个参数,一个Type对象和一个Model {Binding}传递给ViewModel作为CommandParameter。我遇到过关于SO的不同帖子,但都是使用控件绑定。有没有办法传递Type来代替。

我想要这样的东西:

<MenuItem x:Key="RuleBase" Header="RuleBase" x:Shared="False" 
    Command="{Binding DataContext.AddRuleCommand, RelativeSource={RelativeSource AncestorType={x:Type Window}}}">
    <MenuItem.CommandParameter>
        <MultiBinding Converter="{StaticResource MultiParameterConverter}">
            <Binding Path="{Binding}" />
            <Binding Path="{x:Type local:RuleBase}" />
        </MultiBinding>
    </MenuItem.CommandParameter>
</MenuItem>

这段代码只处理一个参数:

<MenuItem x:Key="RuleBase" Header="RuleBase" x:Shared="False" 
    Command="{Binding DataContext.AddRuleCommand, RelativeSource={RelativeSource AncestorType={x:Type Window}}}"
    CommandParameter="{x:Type local:RuleBase}" />

您可以在多重绑定中使用此绑定:

<MultiBinding Converter="{StaticResource MultiParameterConverter}">
    <Binding />
    <Binding Source="{x:Type local:RuleBase}" />
</MultiBinding>    

,但是由于Type不会改变,并且在多绑定表达式中只有一个真正的绑定,因此可以这样重写:

<MenuItem CommandParameter="{Binding ConverterParameter={x:Type local:RuleBase}, 
                                     Converter={StaticResource YourConverter}}" />

尝试将整个MenuItem作为命令参数传递:

CommandParameter="{Binding RelativeSource={RelativeSource Self}}"

必须使用可以接受参数的iccommand实现

相关内容

  • 没有找到相关文章

最新更新