我的意思是,我想在exitisng obejct的基础上创建一个新对象,这是我的代码,并且将像一个例子一样有用:
PictureBox Pic = new PíctureBox();
Pic.Image = Properties.Resources.Theme;
Pic Pic2 = new Pic();
答案 0 :(得分:-2)
认为这就是你想要的:
PictureBox Pic = new PíctureBox();
Pic.Image = Properties.Resources.Theme;
PictureBox Pic2 = new PictureBox(Pic);
只需使用构造函数将所有属性传递给新实例。