Label フィールドを持つクラスがあります。今、そのラベルからそのクラスの参照を取得したいと思います。どうやってやるの?これが私が持っているものです。
public class Abc
{
Label l;
}
public partial class Form1 : Form
{
private void btnins_Click(object sender, EventArgs e)
{
Abc ob=new Abc();
ob.l=new new Label();
l.Text="Right Click Me";
l.ContextMenuStrip = cntxtdelmnu;
}
private void cntxtdelnode_Click(object sender, EventArgs e)
{
Label lbl= (Label)cntxtdelmnu.SourceControl;
//Here I have to get the reference of ob using lbl.
}
}