Pfad in Datagrid (wpf) nicht binden

Typ der Spalte in Datagrid ist Combobox, ich erstelle Liste, und liste diese ok, Bit, wenn ich in XAML schreiben

ItemsSource="{Binding Path=combolist}"

Artikel ist null meine Liste

List<string> combolist = new List<string>();
            while (reader.Read())
            {
                combolist.Add(reader.GetString(0));
            }

Warum ist Artikel null?

Antworten auf die Frage(2)

Ihre Antwort auf die Frage