数据网格中哪个行索引有模板复选框?
我有一个数据网格,每行都有一个作为模板的复选框。 假设我处于其中一个复选框的 CheckedChanged 事件中。有什么方法可以告诉我该复选框位于数据网格的哪一行?
I have a datagrid and there is a checkbox which is template in each row.
Suppose I am in CheckedChanged event of one of the checkboxes. Is there any way I can tell in which row of the datagrid that check box is in?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过 Parent 属性,尽管您必须执行 chk.Parent.Parent 等操作。我不知道当前行有多少父引用......
HTH。
You can through the Parent property, though you have to do something like chk.Parent.Parent and so on. I don't know how many parent references up the current row is...
HTH.
尝试这样的事情:
在.cs中
try something like this:
in .cs
好吧,我找到了一个巧妙的解决方案:) 在checkedChanged 事件中我刚刚写了以下内容:
Ok I found a neat solution :) In the checkedChanged event I just wrote the following: