Hallo ich habe das Problem, das bei meinem Programm die CheckBox nicht im DatagridView angezeigt wird.
Kann mir jemand helfen?
Danke
VB.NET-Quellcode
- Dim cbcolumn As DataGridViewCheckBoxColumn
- 'Dim pos As Integer
- .Columns.Remove(.Columns("pll_istGespielt"))
- 'pos = .Columns(9).Index
- '.Columns.RemoveAt(pos)
- cbcolumn = New DataGridViewCheckBoxColumn()
- cbcolumn.CellTemplate = New DataGridViewCheckBoxCell()
- cbcolumn.CellTemplate.Style.BackColor = Color.Beige
- cbcolumn.DataPropertyName = "pll_IstGespielt"
- cbcolumn.FillWeight = 30
- 'cbcolumn.DisplayIndex = pos
- cbcolumn.HeaderText = "Gespielt"
- .Columns.Add(cbcolumn)
Kann mir jemand helfen?
Danke