我有一个TableLayoutPanel
,其中包含PictureBox
个控件网格。我正在尝试找到一种快捷方式将它们全部更改为Label控件,而不是手动删除每个控件并在每个单元格中放置新控件。
我以为我可以进入设计器代码并使用Label查找/替换PictureBox,但现在我得到了
Visual Studio的错误列表中的“对象与目标类型不匹配”
错误。我现在也无法查看设计器页面。这是不允许的?如果允许,那么正确的方法是什么?
答案 0 :(得分:14)
如果仔细查看生成的代码:
<强> label1
强>:
this.label1 = new System.Windows.Forms.Label();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(134, 163);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 13);
this.label1.TabIndex = 1;
this.label1.Text = "label1";
<强> pictureBox1
强>:
this.pictureBox1 = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(97, 75);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(100, 50);
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
我猜是
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
被您改为:
((System.ComponentModel.ISupportInitialize)(this.label1)).BeginInit();
不起作用,导致设计师问题。 Object does not match target type.
所以,应用您已经做过的更改,删除如下行:
((System.ComponentModel.ISupportInitialize)(this.label1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.label1)).EndInit();
我觉得你很高兴。
答案 1 :(得分:1)
不要更改设计师代码。这些东西是自动生成的。您的更改不仅会导致意外行为,而且它们也会被覆盖。
我会尝试对您的表单进行更改或2,或者您的设计师背后的任何内容,并希望它能够重新生成所有代码。
答案 2 :(得分:1)
您可以删除设计器中的所有图片框,然后在_load事件(或其他方便的事件)中添加所有标签。这样下次更改会更容易。
答案 3 :(得分:0)
正如Haxx所说,你将不得不清理PictureBox所需的额外初始化。您收到的错误是界面转换错误。在你的情况下,正如Haxx猜测的那样,Label控件没有实现ISupportInitialize接口。
与大多数人不同,我不怕为了方便而改变设计师代码,因为你正在做的事情,这样做是可以的。只需知道你的对象,在这之前办理登机手续,并且不要在那里放置自定义代码!