Best practice to pass information between windows.forms

后端 未结 6 404
误落风尘
误落风尘 2020-12-19 15:42

What do you do to pass information between forms? Forward is straight forward (sorry) using Properties or maybe parameters in a New() or DoStuff() method, but what about se

6条回答
  •  感动是毒
    2020-12-19 16:40

    this.Hide(); string[]name = new string[]; new frmFormName = new frm(string what, string you, string going, string to, string put, stiring in); this.ShowDialog(); this.Show();

提交回复
热议问题