Command="{Binding butCommand}"会默认查找ListViewItems中对象的属性,而你的ListViewItems中对象应该不包括butCommand属性;
可以尝试:
Command="{Binding DataContext.butCommand,RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Windows}}}"(假设最外层窗体为Windows)
相关文章
- 03-18在DataGrid中实现Button Command
- 03-18在.net中实现在textbox中按ctrl+enter进行数据的提交
- 03-18python-在PyObjc和Cocoa中实现NSText委托方法
- 03-18Beats:在 Beats 中实现动态 pipeline
- 03-18【聊技术】在Android中实现自适应文本大小显示
- 03-18在报表中录入数据时如何实现行列转换
- 03-18在浏览器中通过bartender,调用条码打印机的active控件代码的实现
- 03-18依赖注入在 dotnet core 中实现与使用:1 基本概念
- 03-18关于在DataGrid.RowDetailsTemplate中的控件查找不到的问题
- 03-18实现Square类,让其继承自Rectangle类,并在Square类增添新属性和方法,在2的基础上,在Square类中重写Rectangle类中的初始化和打印方法...