博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
//停止关联的进程
阅读量:4984 次
发布时间:2019-06-12

本文共 545 字,大约阅读时间需要 1 分钟。

//停止关联的进程

[System.Runtime.InteropServices.DllImport("User32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto)]
private static extern int GetWindowThreadProcessId(IntPtr hwnd, out int ID);
private void Kill(Microsoft.Office.Interop.Excel.Application excel)
{
IntPtr t = new IntPtr(excel.Hwnd); //得到句柄
int k = 0;
GetWindowThreadProcessId(t, out k);
System.Diagnostics.Process p = System.Diagnostics.Process.GetProcessById(k);
p.Kill();
}

posted on
2016-08-23 15:41 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/VictorBlog/p/5799627.html

你可能感兴趣的文章