Friend WithEvents dgvCombo As New DataGridComboBoxColumn
Friend WithEvents newcombobox As New ComboBox
Private Sub datagrid1_AutoGeneratingColumn(sender As System.Object, e As System.Windows.Controls.DataGridAutoGeneratingColumnEventArgs) Handles datagrid1.AutoGeneratingColumn
If e.PropertyName = "WantSummore" Then
newcombobox.Items.Add("Absent with letter")
newcombobox.Items.Add("Absent with no letter")
newcombobox.Items.Add("Late")
dgvCombo.ItemsSource = newcombobox.items
e.Column = New DataGridComboBoxColumn()
e.Column = dgvCombo
End If
Is there format the column wrong? Is visible when i click the cell inside, but after selected the combo items. it missing in cell again....
If e.PropertyName = "Letter" Then
Dim dgvCheckBox As New DataGridCheckBoxColumn
e.Column.DisplayIndex = 3
e.Column = dgvCheckBox
e.Column.Header = "Absent"
End If