Hello i put TextBox Column into WPF grid like this:
DevExpress.Wpf.Grid.GridColumn col = new GridColumn();
col.FieldName = dr["FieldName"].ToString();
col.Header = dr["Caption"].ToString();
//Gets or sets the name of the column
col.Name = "c"+ dr["FieldID"].ToString();
Grid.Columns.Add(col);
Does anyone knows how to add a CheckBox to this WPF grid (Cell should look like some checkbox)..? Thanks.