如何在C#Window窗體中更改控件選擇的順序。我想改變表單中出現的文本框的位置,但是現在當我使用Tab鍵時,它將跳過該文本框並稍後轉到該文本框。我和WPF一起工作過,我只是改變XAML中的控制位置,但我不能以Win的形式來完成。窗體控件選擇
Q
窗體控件選擇
0
A
回答
1
下面是一個簡單的例子,增加了一個按鈕,並設置其的TabIndex財產
// Create a button and add it to the form.
Button button1 = new Button();
// Anchor the button to the bottom right corner of the form
button1.Anchor = (AnchorStyles.Bottom | AnchorStyles.Right);
// Assign a background image.
button1.BackgroundImage = imageList1.Images[0];
// Specify the layout style of the background image. Tile is the default.
button1.BackgroundImageLayout = ImageLayout.Center;
// Make the button the same size as the image.
button1.Size = button1.BackgroundImage.Size;
// Set the button's TabIndex and TabStop properties.
button1.TabIndex = 1;
button1.TabStop = true;
// Add a delegate to handle the Click event.
button1.Click += new System.EventHandler(this.button1_Click);
// Add the button to the form.
this.Controls.Add(button1);
另外,您還可以看看this(從設計設置)
希望它可以幫助
+0
是的,它是TabIndex屬性。謝謝 – user2081328
+1
如果它可以幫助你,請隨時將其標記爲答案:) – Rohit
相關問題
- 1. grails窗體可選控件
- 2. 無法在Windows窗體中選擇特定控件
- 3. Jquery切換選擇窗體控件禁用狀態?
- 4. 展望「選擇聯繫人」窗體:它使用什麼控件?
- 5. 僅當在以前的窗體控件上使用html和php選擇的值時,才顯示窗體控件。
- 6. Windows窗體DatetTimePicker控件預選日期
- 7. 如何選擇窗體控件中的ActiveX選項/單選按鈕
- 8. C#窗體控件
- 9. Windows窗體控件
- 10. 如何選擇窗體頁
- 11. 選擇Laravel窗體編輯
- 12. jquery按窗體ID選擇
- 13. 窗體選擇父水合
- 14. 窗體:sfWidgetFormDoctrineChoice,選擇方法
- 15. 窗體不開啓選擇
- 16. jQuery窗體和選擇框?
- 17. Django窗體選擇變化
- 18. 子窗體內的子窗體控件
- 19. .NET窗體窗體刷新控件
- 20. 線程調用窗體窗體控件
- 21. 動態生成窗體窗體控件
- 22. 窗體之間有什麼區別:選擇和窗體:選項
- 23. Xcode字體選擇器窗口無法選擇字體集合
- 24. Spring MVC選擇窗體中的值:在窗體驗證錯誤後選擇
- 25. 窗體選擇選項需要
- 26. 窗體選擇選項斷線重疊
- 27. 彈簧窗體選項默認選擇
- 28. zf2窗體禁用選擇選項
- 29. Spring MVC窗體:選擇所選值?
- 30. 選擇窗體初始化選項卡
設置Tab索引屬性,你就完成了 – Rohit