Probleme mit CheckBoxColumn in DataGridView

  • VB.NET

    Probleme mit CheckBoxColumn in DataGridView

    Hallo ich habe das Problem, das bei meinem Programm die CheckBox nicht im DatagridView angezeigt wird.

    VB.NET-Quellcode

    1. Dim cbcolumn As DataGridViewCheckBoxColumn
    2. 'Dim pos As Integer
    3. .Columns.Remove(.Columns("pll_istGespielt"))
    4. 'pos = .Columns(9).Index
    5. '.Columns.RemoveAt(pos)
    6. cbcolumn = New DataGridViewCheckBoxColumn()
    7. cbcolumn.CellTemplate = New DataGridViewCheckBoxCell()
    8. cbcolumn.CellTemplate.Style.BackColor = Color.Beige
    9. cbcolumn.DataPropertyName = "pll_IstGespielt"
    10. cbcolumn.FillWeight = 30
    11. 'cbcolumn.DisplayIndex = pos
    12. cbcolumn.HeaderText = "Gespielt"
    13. .Columns.Add(cbcolumn)


    Kann mir jemand helfen?
    Danke