设置选项卡索引
我在运行时在网格中有一些值..两列“名称”和“值”..我制作了列[0]即名称 不可编辑..因此,当我按 Tab 时,我不希望 Column[0] 上有 tabindex ..我希望 Tab 仅在可编辑值上移动..任何人都可以帮忙!
提前致谢!!!
I have some values in Grid at Runtime.. Two Columns "Name" and "Value".. I made column[0] i.e Name
uneditable..So when I press tab I don't want tabindex on Column[0]..I want Tab to move only on editable values.. Can Anyone Help!!!
Thanks in Advance!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将该列的 TabIndex 设置为负值 -1。
从这个页面 MSDN 你有以下内容:
Try to set TabIndex for that column with a negative value as -1.
From this page on MSDN you have the following:
实际上,负值不适用于选项卡索引,它会出错,如果是这种情况,请尝试为选项卡索引尝试正数或零。
谢谢,
Actually, negative values wont work on tab index, it makes error, if that's the case try positive number or zero for your tab index.
Thanks,