Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要根据复选框动态复制面板中的所有控件。(如果选中复选框,则会出现另一个面板)。
最后,当我单击计算时,它对创建的每个面板执行相同的预定义操作。
图片理解:
有人可以告诉我该怎么做吗?
将所需的控件放入 UserControl。
当一个复选框被选中时,创建该控件的一个实例并添加它。
MyPanel myPanel = new MyPanel(); myPanel.Location = new Point(25,25); this.Controls.Add (myPanel);
位置是您在表单中想要的位置。