How to pass value of form1 directly to Form3.
In Form1 i have button and a Textbox
named txtUsername .
public string username = string.Empty;
private void LoginBT_Click(object sender, EventArgs e)
{
username = txtUsername.Text;
Form3 form = new Form3(username);
Form2 frm = new Form2();
frm.Show();
this.Hide
}
and in From2 i have this
private void Button_Click(object sender, EventArgs e)
{
Form3 form = new Form3();
form.Show();
this.Hide();
}
and in Form3
public string Name;
public Form3(string CName)
{
InitializeComponent();
Name= Cname;
}
private void frmTicketandCottages_Load(object sender, EventArgs e)
{
MessageBox.Show(Name);
}
to display the text.
But when i display the text i only get an Empty Text
Any other method to do this ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…