我需要根据用户输入创建一定数量的RichTextBox。 我可以使用工具箱在Visual Studio中创建一个,但是如何通过代码创建多个?
更新:
这是我的代码:
Stateless function components cannot have refs
我运行此程序没有任何反应
答案 0 :(得分:1)
好。这是一个显示其工作原理的示例:
void Main()
{
Form f = new Form();
Button b = new Button();
b.Click += (sender, args) =>
{
RichTextBox richTextBox = new RichTextBox
{
Name = "rtbBlahBlah",
Location = new System.Drawing.Point(12, 169),
Width = 62,
Height = 76
};
f.Controls.Add(richTextBox);
};
f.Controls.Add(b);
f.Show();
}
答案 1 :(得分:0)