WPF:将一些数据附加到按钮
问题:
“我正在使用 ControlTemplate 填充 ListView。 在此模板中,每个项目都会有一个按钮,单击该按钮时需要执行某些操作。
我如何访问生成 ListViewItem 的对象,以便我可以获取某些内容(例如 id)。
Problem :
'Im populating a ListView with ControlTemplate.
In this template for each item there will be a button that when clicked need to perform some action.
How i can access the object that generated the ListViewItem so i can fetch something (like a id).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
DataContext
是你的朋友。每个列表项(以及该项目内的按钮,如果您没有覆盖按钮的DataContext
)都将有一个数据项,用于在DataContext
属性中生成该项目。DataContext
is your friend. Each list item (and button inside that item if you haven't override button'sDataContext
) will have a data item which was used to generate the item inDataContext
property.如果您要动态创建按钮,则可以使用
Tag
属性附加数据,或继承Button
类作为My_Button
并设置属性你需要以另一种方式 像“userId”
尝试观察单击按钮的
Parent
属性。例如:
或内联解决方案:
if you are creating buttons dynamicly , you can use the
Tag
property for attach your data, or inherit theButton
class asMy_Button
and set a Property wich you need like "userId"in the other way
try watch the
Parent
property of clicked button.for example :
or inline solution: