How to create a UserControl that you can drop other controls in it?(如何创建一个可以将其他控件放入其中的 UserControl?)
问题描述
In WinForms, how can I create a UserControl
that when I put on my form I can then add other controls inside by dragging them from the toolbox, the same way as with all containers controls (panels, group boxes, etc)? I've tried to add controls by dropping them in my control but then when I move my control the controls I added stay right where they are, which wouldn't happen if instead of my control I would use a Panel
(the other controls would move with the panel).
Unlike a Panel
control for example, a UserControl
does not act as a container control once it is placed on another form. There is full design-time support while you are designing the UserControl
itself, but its default behavior does not allow it to act as a constitutent control after it has been placed on another form. This is why you are unable to add other controls to it by dragging them from the toolbox.
In order to add this type of behavior to a UserControl
, you need to add the DesignerAttribute
to the definition of your custom UserControl
class. For example:
using System.ComponentModel;
using System.ComponentModel.Design;
[Designer("System.Windows.Forms.Design.ParentControlDesigner, System.Design", typeof(IDesigner))]
public class MyUserControl : System.Windows.Forms.UserControl
{
//...your code here
}
(See the relevant MSDN article for further reading.)
If you want to implement full designer support for nested controls inside your UserControl
, this is slightly more difficult. For a more comprehensive discussion, see this article on CodeProject.
这篇关于如何创建一个可以将其他控件放入其中的 UserControl?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何创建一个可以将其他控件放入其中的 UserControl?


- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 输入按键事件处理程序 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01