当我的数据框复选框面对零值时,我会得到一个例外:
{"Cannot bind to the property or column boolValue on the DataSource.rnParameter name: dataMember"}
是否可以将复选框默认为未选中的null值。我已经在数据指标属性和MSDN上查看,但找不到任何相关的
您可以使用Binding.NullValue
属性。但是请确保您还将Binding.FormattingEnabled
属性设置为true
。
例如,类似的东西:
var dataSource = ...;
checkBox.DataBindings.Add("Checked", dataSource, "{PropertyName}",
true, // formattingEnabled
DataSourceUpdateMode.OnPropertyChanged,
false // nullValue
);