我有5個不同的選項組合框中選擇的項目如何顯示隱藏的文本框,「一名球員」,「兩名球員」,「三名球員」等我的要求是,當用戶選擇的東西從組合框中可以看到等價的文本框,即如果選擇了「單個玩家」,則應出現一個文本框,以便用戶輸入該值。兩個和三個一樣。請建議。當在組合框中
Q
當在組合框中
0
A
回答
0
只需使用CSS的可視性相結合jQuery中(https://api.jquery.com/change/)提供的.change()函數(visibility:hidden的/可見;檢查http://www.w3schools.com/cssref/pr_class_visibility.asp)
$("#myComboBox").change(function() {
//do what you have to do here
});
1
Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
If ComboBox1.Text.Trim.Contains("Player 1") = True Then
TextBox1.Visible = True
TextBox2.Visible = False
TextBox3.Visible = False
ElseIf ComboBox1.Text.Trim.Contains("Player 2") = True Then
TextBox1.Visible = True
TextBox2.Visible = True
TextBox3.Visible = False
ElseIf ComboBox1.Text.Trim.Contains("Player 3") = True Then
TextBox1.Visible = True
TextBox2.Visible = True
TextBox3.Visible = True
End If
End Sub
0
嘗試是這樣的:
Sub cbC(sender As Object, e As EventArgs) Handles ComboBox1.SelectedIndexChanged
Select Case ComboBox1.SelectedIndex
Case 0
TextBox1.Visible = False
TextBox2.Visible = False
Case 1
TextBox1.Visible = True
TextBox2.Visible = False
Case 2
TextBox1.Visible = True
TextBox2.Visible = True
End Select
End Sub
或者,根據什麼更好的適合你的需求:
Sub cbC(sender As Object, e As EventArgs) Handles ComboBox1.SelectedIndexChanged
TextBox1.Visible = (ComboBox1.SelectedIndex = 0)
TextBox1.Visible = (ComboBox1.SelectedIndex = 1)
End Sub
-1
的TextBox1.Visible = (ComboBox1.SelectedIndex = 0)
完美。
您還必須確保屬性下設置可見爲False您的文本框和標籤。否則,當您運行應用程序時,您的文本框將最初可見。
相關問題
- 1. 當組合框在組合框中時,在vbnet中填充組合框
- 2. 在組合框中
- 3. 在組合框中
- 4. WPF組合框:當禁用
- 5. WP7組合框相當於
- 6. 組合框中
- 7. 在組合框
- 8. 在組合框中搜索
- 9. ExtJS的:在組合框中
- 10. 的ItemsSource在組合框中
- 11. 在Django中的組合框?
- 12. 在組合框中接入
- 13. .txt在組合框中
- 14. 如何在組合框中
- 15. 在C#中ListViewItem組合框?
- 16. 在列表視圖中將組合框綁定到組合框
- 17. WPF DataGrid組合框列:在列中傳播標題組合框
- 18. 多列組合框就像在winforms中的組合框
- 19. 如何避免在數據集綁定到組合框中的組合框後,獲取system.data.datarowview在組合框中#
- 20. 從組合框中
- 21. 組合框在ASP.NET
- 22. ColorChooser在組合框
- 23. 組合框在X ++
- 24. 組合框在VB.NET
- 25. 組合框在Telerik.UI.Xaml.Controls.Grid.RadDataGrid
- 26. 在組合框中分組項目
- 27. 當沒有組合框的值選擇
- 28. 錯誤,當試圖填充組合框
- 29. 當組合框項目選擇
- 30. 蟒蛇組合框默認當前