我不知道如何添加usercontrol ..
我的代码和控件位于
之下 private void button1_Click(object sender, EventArgs e)
{
test = new test[index];
for (int i = 0; i < test.Length; i++)
{
test[i] = new RecorderGenerator.test();
test[i].Location = new Point(0, i * 20);
test[i].Size = new Size(100, 10);
test[i].TabIndex = i;
test[i].BackColor = Color.Transparent;
test[i].AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
test[i].Visible = true;
this.tabPage1.Controls.Add(test[i]);
}
index++;
}
我尝试添加其他控件(例如文本框),这是可能的。
但我无法添加由我制作的控件
答案 0 :(得分:1)
请按照以下步骤操作: