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 并在您需要的任何时候在运行时创建它。
设计 UserControl 允许您包含文本框、标签、按钮并按照您的需要对它们进行分组。
在 MSDN 上检查:
创建 Windows 窗体用户控件