C# 进程退出事件帮助

发布于 2024-10-08 19:22:04 字数 356 浏览 1 评论 0原文

Process cExe = new Process();
cExe .StartInfo.FileName = "cexe.exe";
cExe .EnableRaisingEvents = true;
cExe .Exited += this.cExited;

这是退出的方法

private void cExited(object o, EventArgs e)
{
    MessageBox.Show(/* SHOW FILE NAME HERE */);
}

我如何从退出的方法中获取有关进程的信息?哪些变量 (o, e) 为我提供了这些数据以及它们的类型是什么?

Process cExe = new Process();
cExe .StartInfo.FileName = "cexe.exe";
cExe .EnableRaisingEvents = true;
cExe .Exited += this.cExited;

And this is the exited method

private void cExited(object o, EventArgs e)
{
    MessageBox.Show(/* SHOW FILE NAME HERE */);
}

How would i get the information about the process from the exited method? which of the variables (o, e) give me this data and what type are they meant to be?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等待圉鍢 2024-10-15 19:22:04

使用.Net 基类库时,您会发现每个事件都会传递两个参数。

第一个始终是 System.Object 类型,另一个是 System.EventArgs 类型(或其后代)。

第一个参数是对象发送者,可以安全地转换为引发该事件的类的类型。在您的情况下,其类型为 System.Diagnostics.Process 。

例子:

private void cExited(object o, EventArgs e)
{
    Process p = (Process)o;
    // Use p here
}

While working with .Net Base Class Library, you will find that each event passes two parameters.

First is always of type System.Object and other is of type (or descendant of) System.EventArgs.

The first argument that is object sender can be safely cast into type of class that raised that event. In your case that is of type System.Diagnostics.Process.

Example:

private void cExited(object o, EventArgs e)
{
    Process p = (Process)o;
    // Use p here
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文