这是我的代码:
class SelectionTableEntry
{
public CheckBox cbIsChecked { get; set; }
public Table Table { get; set; }
public string TableName { get; set; }
public Button btnEditFilter { get; set; }
public SelectionTableEntry(Table table, bool IsChecked)
{
this.Table = table;
this.TableName = table.Name;
this.cbIsChecked = new CheckBox();
this.cbIsChecked.Checked = IsChecked;
this.btnEditFilter = new Button();
this.btnEditFilter.Text = "Open";
}
}
List<SelectionTableEntry> myList = new List<SelectionTableEntry>();
// after filling the list with items
myDataGridView.DataSource = myList;
现在我想使用具有 SelectionTableEntry 类型的列表作为我的 DataGridView 的数据源。问题是 CheckBox 和 Button 没有显示,所以该字段是空的。
我该如何解决这个问题?提前致谢。
问候,克里斯