枚举属性并将其从一个对象复制到同一类型的另一对象

发布于 2024-10-09 02:43:49 字数 273 浏览 2 评论 0原文

我使用第三方控件将一些数据导出为不同的格式。该控件有一个属性ExportSettings。但它是只读的。

我必须手动设置其属性,例如

ctrl.ExportSettings.Paging = false;
ctr.ExportSettings.Background = Color.Red;

,因此我从用户那里获取 ExportSettings 对象,并将其设置为控件。

如何将其所有成员值复制到用户控件?

I use a third party control which exports some data to different formats. The control has a property ExportSettings. But it is read-only.

I've to manually set its properties like

ctrl.ExportSettings.Paging = false;
ctr.ExportSettings.Background = Color.Red;

So I get the ExportSettings object from the user and I want to set it to the control.

How can I copy all its member values to the user control?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

灼痛 2024-10-16 02:43:49

尝试基于反射的克隆:

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;
}

Try reflection-based cloning:

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;
}
一人独醉 2024-10-16 02:43:49
  static void CopyProperties(object dest, object src)
  {
   foreach (PropertyDescriptor item in TypeDescriptor.GetProperties(src))
   {
    item.SetValue(dest, item.GetValue(src));
   } 
  }
  static void CopyProperties(object dest, object src)
  {
   foreach (PropertyDescriptor item in TypeDescriptor.GetProperties(src))
   {
    item.SetValue(dest, item.GetValue(src));
   } 
  }
苏佲洛 2024-10-16 02:43:49

使用 AutoMapper

它非常易于使用。

AutoMapper 入门

眉目亦如画i 2024-10-16 02:43:49

您可以通过反射来完成此操作。

像这样的东西:

Type exportSettingType = ctrl.ExportSettings.GetType();

foreach (PropertyInfo property in exportSettingType.GetProperties())
{
    object value = property.GetValue(ctrl.ExportSettings, null);
    property.SetValue(secondControl.ExportSettings, value, null);
}

You can do it via Reflection.

Something like this:

Type exportSettingType = ctrl.ExportSettings.GetType();

foreach (PropertyInfo property in exportSettingType.GetProperties())
{
    object value = property.GetValue(ctrl.ExportSettings, null);
    property.SetValue(secondControl.ExportSettings, value, null);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文