1

我的视图 XAML 中有以下内容

<GroupBox Grid.Row="0" Header="Aktionen bei Prüfung Aufbau">
    <ContentControl Content="{Binding BuildUpActions}" ContentTemplate="{StaticResource FullActionListTemplate}" x:Name="BuildUp"/>
</GroupBox>

<GroupBox Grid.Row="1" Header="Aktionen bei Prüfung Abbau">
    <ContentControl Content="{Binding TearDownActions}" ContentTemplate="{StaticResource FullActionListTemplate}" x:Name="TearDown"/>
</GroupBox>

DataTemplate 在单独的资源中定义

<DataTemplate x:Key="FullActionListTemplate">
    <DockPanel LastChildFill="True">
        <StackPanel DockPanel.Dock="Bottom" Orientation="Horizontal" HorizontalAlignment="Right">
            <Button Content="Neuer Ausgang" Style="{StaticResource ButtonRowStyle}"
                    Command="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type TabControl}}, Path=DataContext.NewFullIOCommand}" 
                    CommandParameter="{Binding **?HOW?**}"
                    />
            <more buttons here...>
        </StackPanel>
        <ContentControl Content="{Binding}" >

        </ContentControl>
    </DockPanel>
</DataTemplate>

该命令在 ViewModel 中定义

    public ICommand NewFullIOCommand
    {
        get
        {
            if (this._newFullIOCommand == null)
            {
                this._newFullIOCommand = new Mvvm.RelayCommand(parm => DoNewFullIO(parm));
            } return this._newFullIOCommand;
        }
    }

我希望能够确定 2 个列表中的哪一个生成了命令。我希望将 CommandParameter 传递给包含控件的 x:Name 的命令处理程序。

如何定义绑定?有没有更好的办法?

4

2 回答 2

5

我查看了您的示例并对读取 CommandParameter 的行进行了快速编辑。完成此更改后,我在 Snoop(WPF 运行时调试器)中检查了这一点,并看到 CommandParameter 设置为您描述为要应用的所需值。

首先,您可以在此处获取 Snoop:

窥探

通过简单地执行以下操作,我能够将 CommandParameter 设置为封闭 ContentControl 的名称:

<DataTemplate x:Key="FullActionListTemplate">
        <DockPanel LastChildFill="True">
            <StackPanel DockPanel.Dock="Bottom" Orientation="Horizontal" HorizontalAlignment="Right">
                <Button Content="Neuer Ausgang"
                Command="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type TabControl}}, Path=DataContext.NewFullIOCommand}" 
                CommandParameter="{Binding Path=Name, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ContentControl}}}"
                />
            </StackPanel>
            <ContentControl Content="{Binding}" >

            </ContentControl>
        </DockPanel>
    </DataTemplate>

作为旁注,您的示例在上面的行中几乎包含类似的技术,您可以在其中绑定到 Command 属性。

于 2012-04-22T02:32:39.307 回答
0

创建自引用属性

我讨厌 WPF。但是,我只是这样做了:将此属性添加到绑定的数据模型类中:

public class MyDataObjectItem
{
    //...
    public MyDataObjectItem Self { get { return this; } }
    //...
}

那么命令参数就很简单了:

CommandParameter="{Binding Self}"

或者,显然这有效

CommandParameter="{Binding}"

https://stackoverflow.com/a/11287478/887092

于 2016-10-13T09:13:53.180 回答