访问私有类中的成员

发布于 2024-08-13 06:38:35 字数 701 浏览 8 评论 0原文

我遇到了一种情况,当我需要访问嵌入式私有类中的类的私有成员时。我怎样才能有效地做到这一点。

public partial class Form1 : Form
{
    // this private label will be used only in this form
    private class MyFormLabel : Label
    {
        MyFormLabel() 
        {
            this.BorderStyle = BorderStyle.FixedSingle;
            // ?? how to pass the from label_Click (without delegates)?
            this.Click +=new EventHandler(????); 
        }
    }

    public Form1()
    {
        InitializeComponent();
    }

    private void label_Click(object sender, EventArgs e)
    {
        // displays the form caption
        MessageBox.Show(this.Text);
    }
}   

备注: 我将控件动态添加到表单中,因此我可以确保在创建后它们已经订阅了此事件。

I have a situation when I need to access the private members of a class in an embedded private class. How can I do it efficiently.

public partial class Form1 : Form
{
    // this private label will be used only in this form
    private class MyFormLabel : Label
    {
        MyFormLabel() 
        {
            this.BorderStyle = BorderStyle.FixedSingle;
            // ?? how to pass the from label_Click (without delegates)?
            this.Click +=new EventHandler(????); 
        }
    }

    public Form1()
    {
        InitializeComponent();
    }

    private void label_Click(object sender, EventArgs e)
    {
        // displays the form caption
        MessageBox.Show(this.Text);
    }
}   

NotaBene:
I add dynamically the controls to the form, so I would be sure that after creation they are already subscribed to this event.

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

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

发布评论

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

评论(2

帅气称霸 2024-08-20 06:38:35

您可以从嵌套类访问类的私有成员。当然,要访问实例方法,您仍然需要类的实例。

You can access private members of classes from nested classes. Of course, to access an instance method you still need an instance of the class.

许久 2024-08-20 06:38:35

在这种情况下,只需以相反的方式执行即可,例如在 InitializeComponent() 之后执行 myFormLabel.Click += label_Click

In this case, just do it the othwe way around, e.g. after InitializeComponent() do a myFormLabel.Click += label_Click

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