无法使用反射设置用户控件 属性,引发 NullReference
Can't set User Control property using Reflection, raise NullReference
我有自己的用户控件,里面有 WinForms DataGrid。
代码如下
public partial class SearchTextBox : UserControl
{
public SearchTextBox()
{
_grid.Visible = false;
_grid.Location = new Point(Location.X + Height, Location.Y + Width);
}
public object DataSourse
{
get { return _grid.DataSource; }
set
{
try
{
if (value is DataTable)
{
_grid.DataSource = value;
}
else
{
_grid.DataSource = value;
}
}
catch (Exception)
{
throw;
}
}
}
}
初始化包含我的用户控件的表单后,我尝试使用反射以这种方式设置 DataSource 属性
Type type = ObjectName.GetType();
PropertyInfo DataSource = type.GetProperty("DataSource");
DataSource.SetValue(ObjectName, cs.table);
此代码在行
上引发 NullReference 异常
DataSource.SetValue(ObjectName, cs.table);
正如我在 VS IntelliSence DataSource 中看到的那样,对象有空引用,我无法解决这个问题。
如果我尝试使用反射类似的方式将 属性 值分配给标准 WinForms 控件,例如。 ComboBox - 它工作正常,并且 DataSource 引用了 Object.
看来我不能这样分配属性而且我的UC构造函数写错了。
如何使用反射将 属性 设置为自定义用户控件?
不是DataSource,而是DataSource
我有自己的用户控件,里面有 WinForms DataGrid。 代码如下
public partial class SearchTextBox : UserControl
{
public SearchTextBox()
{
_grid.Visible = false;
_grid.Location = new Point(Location.X + Height, Location.Y + Width);
}
public object DataSourse
{
get { return _grid.DataSource; }
set
{
try
{
if (value is DataTable)
{
_grid.DataSource = value;
}
else
{
_grid.DataSource = value;
}
}
catch (Exception)
{
throw;
}
}
}
}
初始化包含我的用户控件的表单后,我尝试使用反射以这种方式设置 DataSource 属性
Type type = ObjectName.GetType();
PropertyInfo DataSource = type.GetProperty("DataSource");
DataSource.SetValue(ObjectName, cs.table);
此代码在行
上引发 NullReference 异常DataSource.SetValue(ObjectName, cs.table);
正如我在 VS IntelliSence DataSource 中看到的那样,对象有空引用,我无法解决这个问题。 如果我尝试使用反射类似的方式将 属性 值分配给标准 WinForms 控件,例如。 ComboBox - 它工作正常,并且 DataSource 引用了 Object.
看来我不能这样分配属性而且我的UC构造函数写错了。
如何使用反射将 属性 设置为自定义用户控件?
不是DataSource,而是DataSource