在 C# 2.0 中将参数传递给 UserControl 构造函数

发布于 2024-07-23 09:56:08 字数 42 浏览 5 评论 0原文

有没有办法在动态加载用户控件时将参数传递给LoadControl函数?

Is there a way to pass the parameters to the LoadControl function when loading the user control dynamically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

回忆躺在深渊里 2024-07-30 09:56:08

我找到了一个使用反射的解决方案 此处

I found a solution that uses reflection here

深海夜未眠 2024-07-30 09:56:08

您需要做的就是创建 UserControl 类的后代,添加一个默认构造函数和另一个接受您的参数的构造函数。 无参数构造函数对于设计器支持是必需的。

public class MyControl : UserControl
{
    public MyControl() : base()
    {
       // do initialization stuff...
    }

    public MyControl(int parameter) : this()
    {
       // do additional stuff with parameter
    }
}

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.

public class MyControl : UserControl
{
    public MyControl() : base()
    {
       // do initialization stuff...
    }

    public MyControl(int parameter) : this()
    {
       // do additional stuff with parameter
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文