gpt4 book ai didi

c# - 表单显示时的事件是什么

转载 作者:太空宇宙 更新时间:2023-11-03 20:06:22 24 4
gpt4 key购买 nike

我有一个表单 (MainForm),其中包含一些按钮,例如 btnInsertContact、btnInsertEmployemant ...

例如,当用户单击 btnInsertContact 时,将显示另一个表单,用户应在其中输入他的联系信息。但 MainForm 不会关闭。

我想要在用户关闭联系表单时发生的事件。

通过这段代码,Contact Form 被显示,但是 MainForm 没有关闭。

    private void btnInsertContact_Click(object sender, EventArgs e)
{
frmContact.ShowDialog();
}

我想在关闭联系表单后更新 MainForm 中的一些信息。

我尝试了 Load 事件,但它不是真的,因为我的 MainForm 没有关闭

我尝试了 Enter 事件,但没有成功,我不知道为什么。

我应该处理什么事件?

最佳答案

如果你想从联系表单中获取值,那么你应该将控件的修饰符分配给 public

//MAIN FORM
//First method
private void btnInsertContact_Click(object sender, EventArgs e)
{
frmContact.FormClosed += new EventHandler(ContactForm_Closed);
frmContact.ShowDialog();
}
private void ContactForm_Closed(object sender, EventArgs e)
{
//Write ur code here
}

//Second method
private void btnInsertContact_Click(object sender, EventArgs e)
{
frmContact.ShowDialog();
write ur code here.
}

关于c# - 表单显示时的事件是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23210517/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com