将数据从子窗体转移到子窗体,然后从父窗体打开child2
本文关键字:窗体 child2 然后 数据 转移 | 更新日期: 2023-09-27 18:00:35
我可以毫无问题地将数据从child1传输到child2窗体,并从child1窗体打开child2。但我需要从主菜单栏打开child2窗体并在文本框中传输数据。数据没有到达child2,然后我从父窗体打开child2。这是代码:Child1(官员登录)
public string s;
public string Param
{
get { return s; }
set { s = value; }
}
public void LoginMethod()
{
try
{
OfficerBO user = new OfficerBO ();
user.OfficerID = txtOfficerId.Text;
user.Password = hs.PassHash(txtPassword.Text);
if (user.Login())
{
s = user.LastName;
MessageBox.Show("You Loged in Successfully'n'n" + user.FirstName +
" " + user.LastName );
OnLoginSuccess(null, null);
// this.Hide();
HolidayApp h = new HolidayApp();
// Data gets transfered into Child2 (HolidayApp) form
//and dialog opens no problem
h.ParamSet = Param;
h.ShowDialog();
}
else
{
txtOfficerId.Text = "";
txtPassword.Text = "";
MessageBox.Show("Invalid details");
}
}
catch (Exception ex)
{
MessageBox.Show("Error " + ex.Message);
}
}
Child2(HolidayApp):
public string ParamSet
{
get { return txtHolidaySurname.Text; }
set { txtHolidaySurname.Text = value; }
}
public void HolidayApp_Load(object sender, EventArgs e)
{
txtHolidaySurname.Text = ParamSet;
}
我需要帮助:成功登录后,我需要从主菜单栏打开HolidayApp(Child2),并在文本框中显示用户详细信息。请提供帮助或建议。
感谢
如果我正确理解您的代码,那么您的属性ParamSet
不保留任何数据,只是读取并设置txtHolidaySurname.Text
的值
因此,如果Form_Load
之后的文本框为空,那么txtHolidaySurname.Text
可能在h.ParamSet=Param
之后重置为默认值('')。
试着只保存一个名称,然后放在Form_Load
的文本框中
private string sParam;
public string ParamSet
{
get { return this.sParam;}
set { this.sParam=value;}
}
在Form_Load
中将是相同的代码。。。。