在 C# 2.0 中将参数传递给 UserControl 构造函数
有没有办法在动态加载用户控件时将参数传递给LoadControl函数?
Is there a way to pass the parameters to the LoadControl function when loading the user control dynamically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了一个使用反射的解决方案 此处
I found a solution that uses reflection here
您需要做的就是创建 UserControl 类的后代,添加一个默认构造函数和另一个接受您的参数的构造函数。 无参数构造函数对于设计器支持是必需的。
All you need to do is create a descendant of the UserControl class, add a default constructor and another constructor that takes your parameters. The parameterless constructor is necessary for designer support.