C# 写了form1_Closed事件可是调试运行是关闭后没响应代码
usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Da...
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace 视窗版
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show("欢迎使用本软件", "计数器");
}
private void form1_Closed(object sender, EventArgs e)
{
MessageBox.Show("感谢您使用","尊敬的用户");
}
}
}
我觉得没问题啊form1_Closed事件我也写了,可是运行是就是点关闭按钮不弹出Msg提示窗口来求解啊!
——————————————————————————————————————————————
附加:program.cs
namespace 视窗版
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
} 展开
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace 视窗版
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show("欢迎使用本软件", "计数器");
}
private void form1_Closed(object sender, EventArgs e)
{
MessageBox.Show("感谢您使用","尊敬的用户");
}
}
}
我觉得没问题啊form1_Closed事件我也写了,可是运行是就是点关闭按钮不弹出Msg提示窗口来求解啊!
——————————————————————————————————————————————
附加:program.cs
namespace 视窗版
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
} 展开
展开全部
在closing事件中写这句代码。
追问
这两个有什么区别?
追答
closed代表关闭了之后,程序关闭之后,程序所占用的资源都被释放掉了,因此执行的提示框也一起被关掉了。
closing代表在关闭的过程中。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
改成closing事件试试吧。
追问
跟closing有啥区别??
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询