我使用第三方控件将一些数据导出为不同的格式。该控件具有属性ExportSettings
。但它是只读的。
我要手动设置其属性,如
ctrl.ExportSettings.Paging = false;
ctr.ExportSettings.Background = Color.Red;
所以我从用户那里得到了ExportSettings对象,我想把它设置为控件。
如何将其所有成员值复制到用户控件?
答案 0 :(得分:20)
尝试基于反射的克隆:
private object CloneObject(object o)
{
Type t = o.GetType();
PropertyInfo[] properties = t.GetProperties();
Object p = t.InvokeMember("", System.Reflection.BindingFlags.CreateInstance,
null, o, null);
foreach (PropertyInfo pi in properties)
{
if (pi.CanWrite)
{
pi.SetValue(p, pi.GetValue(o, null), null);
}
}
return p;
}
答案 1 :(得分:17)
static void CopyProperties(object dest, object src)
{
foreach (PropertyDescriptor item in TypeDescriptor.GetProperties(src))
{
item.SetValue(dest, item.GetValue(src));
}
}
答案 2 :(得分:4)
答案 3 :(得分:1)
您可以通过Reflection完成此操作。
这样的事情:
Type exportSettingType = ctrl.ExportSettings.GetType();
foreach (PropertyInfo property in exportSettingType.GetProperties())
{
object value = property.GetValue(ctrl.ExportSettings, null);
property.SetValue(secondControl.ExportSettings, value, null);
}
答案 4 :(得分:1)