访问私人班级中的成员

时间:2009-12-04 12:04:53

标签: .net accessor

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

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: 我动态地将控件添加到表单中,因此我确信在创建之后它们已经订阅了此事件。

2 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分:0)

在这种情况下,只需反过来,例如,l.e.g。在InitializeComponent()执行myFormLabel.Click += label_Click

之后