WPF中如何继承ListViewItem?
我需要创建表,该表的所有 ListViewItem 将被构建保留 1. 图片 2. 文字 3. 按钮
我该怎么做?
I need to create table that all ListViewItem of this table will be build hold
1. Image
2. Text
3. Button
How can i do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 WPF 中,您不必继承 ListViewItem 来添加属性,您可以使用属性创建类并将其绑定到 ListView 或 ListBox 的 ItemSource 并创建 ItemTemplate 以根据需要显示项目。
以下是有关该问题的一些资源
1.http:// /huydinhpham.blogspot.com/2008/11/using-listvew-to-display-complex-data.html
2.http://www.codewrecks.com/blog/index.php/2008/ 11/08/wpf-and-wrapping-text-inside-elements-of-a-listview/
In WPF you don't have to inherit ListViewItem to add your properties, you can create your class with your properties and bind it to ListView's or ListBox's ItemSource and create ItemTemplate to show item as you like.
Here are some resources about that
1.http://huydinhpham.blogspot.com/2008/11/using-listvew-to-display-complex-data.html
2.http://www.codewrecks.com/blog/index.php/2008/11/08/wpf-and-wrapping-text-inside-elements-of-a-listview/