为什么DelegateCommand
在我的 中不起作用Listview
?
<ListView>
<ListView.ItemTemplate>
<DataTemplate>
<Button Command="{Binding OpenCommand}" />
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
但是当我将按钮放在列表视图之外时它会起作用。我做错了什么?
也许里面ListView.ItemCommand Event
有Windows-Store Apps
?