禁用数据网格 silverlight 2.0 中的行
我有一个数据网格,当用户尝试编辑一行时,我只想让该行可编辑,并禁用所有其他行。这可能吗?我尝试寻找 datagrid.rows 但没有。
请帮忙
谢谢 赛伊
I have a datagrid and when user tries to edit a row then I want to have only that row editable and all other rows disabled. Is this possible ? I tried looking for datagrid.rows but there is none.
Please help
Thanks
Sai
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看
BeginEdit
和EndEdit
事件此处。如果默认行为不会阻止您在当前编辑其他行时编辑其他行,您应该能够在这些事件中放置一些代码,以禁止在编辑模式下选择其他行。Take a look at the
BeginEdit
andEndEdit
events here. If the default behavior isn't preventing you from editing the other rows while you are currently editing one you should be able to place some code in those events to disable selecting other rows while in edit mode.