我有一个像这样创建的控件:
public partial class MYControl : MyControlBase
{
public string InnerText {
get { return textBox1.Text; }
set { textBox1.Text = value; }
}
public MYControl()
{
InitializeComponent();
}
}
partial class MYControl
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.textBox1 = new System.Windows.Forms.TextBox();
this.listBox1 = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(28, 61);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(100, 20);
this.textBox1.TabIndex = 0;
//
// listBox1
//
this.listBox1.FormattingEnabled = true;
this.listBox1.Location = new System.Drawing.Point(7, 106);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(120, 95);
this.listBox1.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(91, 42);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 13);
this.label1.TabIndex = 2;
this.label1.Text = "label1";
//
// MYControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.label1);
this.Controls.Add(this.listBox1);
this.Controls.Add(this.textBox1);
this.Name = "MYControl";
this.Size = new System.Drawing.Size(135, 214);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
}
MyControlBase包含ListBox和TextBox的定义。现在,当我尝试在表单设计器中查看此控件时,它会给我这些错误:
变量'listBox1'是 未申报或未分配。
变量'textBox1'是 未申报或从未被分配。
这显然是错误的,因为它们是在具有公共访问权限的MyControlBase中定义的。有没有办法按下Form Designer让我可以直观地编辑我的控件?
答案 0 :(得分:1)
我认为你必须使用 base.listBox1 和 base.textBox1 。它们在MyControlBase中定义,它是基类,而不是需要使用 this 关键字的子类。
答案 1 :(得分:0)
Dunno如果这是你的问题,但设计师在同一个.cs文件中定义多个类型时会遇到麻烦。如果是这种情况,请尝试为每个类使用.cs文件。
答案 2 :(得分:0)
有时(总是?)VS需要您重新编译项目才能在设计器中成功显示您的用户控件。
还要考虑到VS设计器实际加载并实例化您的控件以在窗体上显示它。您的代码实际上是在后台运行的。然而,它不会有它可能期望的所有东西 - 比如一些全局应用程序变量甚至是同一表单上的其他东西。您的控制必须为“设计模式”做好准备。否则,如果它产生异常,设计师将不会显示它。每个控件都有一个属性(不记得名称,但你应该很容易找到它),它允许你确定控件是处于“设计模式”还是实际运行。
答案 3 :(得分:0)
编译器是正确的(因为它往往是)。
源代码中既未定义textbox1也未定义listbox1。它们不出现在派生类或基类中。
您应该将以下内容添加到基类中:
protected System.Windows.Forms.TextBox textbox1;
protected System.Windows.Forms.ListBox listbox1;
如果你决定对textbox1和listbox1使用private而不是protected,你还需要进行Nazgulled概述的更改。