原因:我在datatemplate中使用命令,这些命令全部来自于ViewModel中。这些命令却始终无法生效,后来发现根本就没有绑定上。查了很久发现datatemplate中是无法访问到datatemplate控件层以外的资源,包括ViewModel中的命令。
原代码:
<ListBox Grid.Row="2" ItemsSource="{Binding OutPutFileList}" Background="GhostWhite">
<ListBox.ItemTemplate>
<DataTemplate >
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Margin="10,10,10,10">
<TextBlock Text="{Binding CommitFile}" FontSize="16" Margin="0,0,15,0" Width="350px" />
<Button Content="复制" Command="{Binding CopyCommand}" CommandParameter="{Binding CommitFile}"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
如上所示,CopyCommand是无法触发的。
解决:为了访问到datacontext中的命令,我们需要改变命令源,通过指定父级来访问全局的datacontext
代码:
<ListBox Grid.Row="2" ItemsSource="{Binding OutPutFileList}" Background="GhostWhite" x:Name="CommitList">
<ListBox.ItemTemplate>
<DataTemplate >
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Margin="10,10,10,10">
<TextBlock Text="{Binding CommitFile}" FontSize="16" Margin="0,0,15,0" Width="350px" />
<Button Content="复制" Command="{Binding ElementName=CommitList,Path=DataContext.CopyCommand}" CommandParameter="{Binding CommitFile}"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>