public partial class Form1 : Form
{
Label l1;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
l1 = this.label1;
}
private void button1_Click(object sender, EventArgs e)
{
Form2 f2 = new Form2(l1);
f2.ShowDialog();
}
}