任何人都可以知道如何在Datagrid視圖列中添加單選按鈕?我需要單個單元格中的三個單選按鈕。DataGridView列中的RadioButton列VB.NET
0
A
回答
1
您必須爲DataGridView
創建您自己的單元格和列。它是一個有點棘手,但在這裏,你必須從MSDN中的所有步驟:
http://msdn.microsoft.com/en-us/library/aa730882(v=vs.80).aspx
+0
謝謝SysDragon .... – Thanzeem
-1
在這裏,我有一個簡單的方法使用無線電按鈕來選擇和 未選擇透明的PNG圖像
http://how2doinvbdotnet.blogspot.in/
檢查我的博客:how2doinvbdotnet.blogspot.in
Public Class Form1 Dim ColType(,) As
Integer Private Sub Form1_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) _ Handles MyBase.Load With DataGridView1
.RowCount = 5 .ColumnCount = 3 For i As Integer = 0 To .RowCount - 1
.Rows(i).Cells(2) = New DataGridViewImageCell
.Rows(i).Cells(2).Style.Alignment =
DataGridViewContentAlignment.MiddleCenter .Rows(i).Cells(2).Value =
My.Resources.RadioUnsel .Rows(i).Cells(2).Tag = 2 Next End With End
Sub Private Sub DataGridView1_CellClick(ByVal sender As Object,
ByVal e As _System.Windows.Forms.DataGridViewCellEventArgs) Handles
DataGridView1.CellClick With DataGridView1 If
.Rows(e.RowIndex).Cells(e.ColumnIndex).Tag = 2 Then For i As Integer
= 0 To .RowCount - 1 If e.RowIndex <> i Then .Rows(i).Cells(e.ColumnIndex).Value = My.Resources.RadioUnsel
Else
.Rows(i).Cells(e.ColumnIndex).Value = My.Resources.RadioButtonSel
End If
Next
End If
End With
End Sub
End Class
相關問題
- 1. 使用Radiobutton列創建DataGridView
- 2. vb.net/DataGridView/ComboBox列?
- 3. Vb.net/DataGridView/ComboBox列
- 4. DataGridView的VB.net到列表
- 5. 把自定義列表中的datagridview vb.net
- 6. vb.net隱藏DataGridView中的列非常慢
- 7. 關於vb.net中datagridview的組合框列
- 8. 在DatagridView中填充組合框列VB.Net
- 9. 只顯示一列的DataGridView的mysql vb.net
- 10. VB.NET - 將列添加到DataGridView的列表中
- 11. DataGridView的總和列錯誤/ vb.net
- 12. 綁定列表(的類)datagridview在vb.net
- 13. VB.NET的DataGridView - 所有列一列 - 記錄行一列
- 14. 在ASP.NET中的Radiobutton列表
- 15. Extjs 6.0 RadioButton列
- 16. vb.net更改datagridview列標題名稱
- 17. 自動滾動到固定列datagridview vb.net
- 18. vb.net將datagridview列類型更改爲combobox
- 19. 排列DataGridView中的列
- 20. VB.NET - 從另一列填寫特定的列的DataGridView
- 21. vb.net中的Datagridview RowValidation
- 22. Vb.net中的AutoSize DataGridView
- 23. datagridview中的combobox列
- 24. C#中的Datagridview列?
- 25. datagridview中的列值
- 26. DataGridView中的塊列
- 27. DataGrid創建RadioButton列
- 28. 如何計算vb.net中datagridview中特定列的行值總和
- 29. 如何從vb.net datagridview中的特定列中獲取值?
- 30. 如何在vb.net的datagridview中打印選定的列?
更新您的代碼爲datagridview這裏得到很好的答案 –
是的..我知道。但我嘗試編輯列屬性。只有'datagridview複選框列'和'datagridview combobox列'。 'Datagridview radiobutton列'不存在。我是新手vb.net – Thanzeem