I’ve got a DataGrid whose main purpose is to allow the user to enter data in its cells.
However, the first field in this grid should display the contents of a list.
How would I go about setting the data source for just one column?
EDIT: I want to achieve something like this:

Specify your own
DataGridTemplateColumninDataGrid.Columns, and set theDataGridTemplateColumn.CellTemplateto whatever it is you’re looking to place in that column.For example, if you wanted it to be a
ComboBoxpointing to some other list of fields:I’m using a property called
SomeCategoryListthat’s onMyWindow.DataContext, however you can set the binding to point to wherever your field list is stored