1

我认为这是一个非常简单的问题,但我找不到答案。我在数据模板中定义了一个 itemtemplate。当一个项目被选中时,我想触发一个命令来选择我的元素的名称并将其应用到其他地方。目前 MouseDown 事件不接受我的命令。

<ListView Margin="4" Grid.Row="1" Grid.ColumnSpan="2" ItemsSource="{Binding Path=ExistingStateInfos, ElementName=Window}"
                  SelectedItem="{Binding Path=SelectedStateInfo, ElementName=Window}" x:Name="statinfoListview">
            <ListView.ItemTemplate>
                <DataTemplate DataType="{x:Type States:StateInfo}">
                    <TextBlock Text="{Binding Path=Name}" MouseDown="{x:Static MyWindow.ApplyStateInfoNameToStateCommand}" />
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView>
4

2 回答 2

0

您不能将命令直接设置为事件处理程序。

EventToCommandMVVM LightToolkit使用

<DataTemplate DataType="{x:Type States:StateInfo}">
    <TextBlock Text="{Binding Path=Name}">
       <i:Interaction.Triggers>
         <i:EventTrigger EventName="MouseDown">
            <Command:EventToCommand Command="{Binding YourCommand, Mode=OneWay}" />
         </i:EventTrigger>
       </i:Interaction.Triggers>
    </TextBlock>
 </DataTemplate>
于 2012-10-12T09:51:19.037 回答
0

事实上,这不是我胡说的,我只是添加做

<TextBlock Text="{Binding Path=Name}" MouseDown="{x:Static ApplyStateInfoNameToState_Click}" />

抱歉今天是星期五。周末愉快 :)

于 2012-10-12T12:57:26.237 回答