Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 WPF 应用程序。我的 WinForms 选项卡表现得很疯狂。我进入 .designer.vb 并设置所有控件 .tabindex = 0。
然后我转到表单的设计视图并将标签顺序设置为:
0.0.0.0.1
0.0.0.0.2
0.0.0.0.等
.我试过使用VS.2008中的按钮
我尝试手动设置每个控件的标签顺序。
我尝试将每个控件设置为 0,然后手动设置标签顺序。
我尝试迭代控件并设置 Z-Orders。
我错过了什么?!?
使用面板可能会很辛苦。正如 RBarryYoung 所说,您必须分别处理每个面板。整理出最外面的面板并向内工作,直到您获得控制权
我发现最好的方法是将文档大纲窗口 (Ctrl+Alt+T) 固定在屏幕的一侧,以查看面板的排列方式以及属性窗口到另一侧。
文档大纲 - MSDN
然后使用属性窗口手动设置顺序。除了非常简单的表格外,我从来没有设法让标签顺序按我的意愿工作。