我有TextEdit Control
并且它绑定到Datasource的类字段,因此它看起来像EditValue - bindingSource1.MyClassField
。我可以通过代码以某种方式获得EditValue的类型吗?
我发现textEdit1.DataBindings[0].BindableComponent
有我需要的EditValue,但它似乎是私有的,textEdit1.DataBindings[0].BindingMemberInfo
只包含字符串值。
答案 0 :(得分:1)
您必须将bindingsource current转换为DataRowView。
object Result = null;
DataRowView drv = bindingSource1.Current as DataRowView;
if (drv != null)
{
// get the value of the field
Result = drv.Row["columnName"];
// show the type if this value
MessageBox.Show(Result.GetType().ToString());
}
由于这会从bindingsource获取值,因此绑定到哪个控件并不重要。它适用于TextEdits以及DataGridView。
编辑:
另一种获取类型的方法是:
(这仅在EditValue不为空时才有效)
object test;
test = textEdit1.EditValue;
MessageBox.Show(test.GetType().ToString());
修改强>
我找到了一种从数据绑定中查找信息的方法,因此当textEdit1的EditValue仍然为null时它也应该有效。
PropertyDescriptorCollection info = textEdit1.DataBindings[0].BindingManagerBase.GetItemProperties();
string fieldname = textEdit1.DataBindings[0].BindingMemberInfo.BindingField;
MessageBox.Show(info[fieldname].Name + " : " + info[fieldname].PropertyType.ToString());
我在这个页面上找到了这个:
https://msdn.microsoft.com/en-us/library/kyaxdd3x(v=vs.110).aspx#Examples