Как сменить заголовок form1 из form2?
Категория: .NET
2011-09-12 22:50:47
В первой форме:
code: #csharp
private void button1_Click(object sender, EventArgs e) { Form2 f = new Form2(); f.Owner = this; f.Show(); }
Во второй:
code: #csharp
private void button1_Click(object sender, EventArgs e) { Form1 main = this.Owner as Form1; if (main != null) { string s = main.Text; main.Text = "Lol"; } }
Поделиться: