在 C# 中终止指定任务而不是进程
Kill Specified Task instead of Process in C#
和Microsoft Word一样,如果我们打开多个Wordwindows,会发现它们都在一个名为WINWORD的进程下,进程下有多个任务。
在Window 8.1 Pro的任务管理器中,我们可以右键单击它并通过End Task结束它。
我成功地用进程名称完成了结束进程,但我无法从 Google 搜索中得到任何想法,在这种情况下如何在特定进程下终止特定任务。
强调:我不是在问如何杀死进程。
进程[i].Kill();
更新
我成功用
杀死了指定的单词Window
using System;
using System.Runtime.InteropServices;
namespace CloseTask
{
class Program
{
[DllImport("user32.dll")]
public static extern int FindWindow(string lpClassName,string lpWindowName);
[DllImport("user32.dll")]
public static extern int SendMessage(int hWnd, uint Msg, int wParam, int lParam);
public const int WM_SYSCOMMAND = 0x0112;
public const int SC_CLOSE = 0xF060;
static void Main(string[] args)
{
closeWindow();
}
private static void closeWindow()
{
// retrieve the handler of the window of Word
// Class name, Window Name
int iHandle = FindWindow("OpusApp", "Document1 - Microsoft Word");
if (iHandle > 0)
{
//close the window using API
SendMessage(iHandle, WM_SYSCOMMAND, SC_CLOSE, 0);
}
}
}
}
但我想知道在这种情况下如何才能杀死 oldest 单词 Window?如果进程可以对 StartTime 进行排序以杀死最旧的......但我认为这应该包含在另一个问题中,谢谢。
好吧,从外观上看,如果您的应用程序有多个顶级 Windows,任务管理器会显示多个条目,即使它们都属于同一个进程。
当您单击“结束任务”时,任务管理器会向选定的 window 发送 WM_CLOSE
message。仅关闭一个 window 而不是其他
取决于您的应用程序。
和Microsoft Word一样,如果我们打开多个Wordwindows,会发现它们都在一个名为WINWORD的进程下,进程下有多个任务。
在Window 8.1 Pro的任务管理器中,我们可以右键单击它并通过End Task结束它。
我成功地用进程名称完成了结束进程,但我无法从 Google 搜索中得到任何想法,在这种情况下如何在特定进程下终止特定任务。
强调:我不是在问如何杀死进程。
进程[i].Kill();
更新
我成功用
杀死了指定的单词Windowusing System;
using System.Runtime.InteropServices;
namespace CloseTask
{
class Program
{
[DllImport("user32.dll")]
public static extern int FindWindow(string lpClassName,string lpWindowName);
[DllImport("user32.dll")]
public static extern int SendMessage(int hWnd, uint Msg, int wParam, int lParam);
public const int WM_SYSCOMMAND = 0x0112;
public const int SC_CLOSE = 0xF060;
static void Main(string[] args)
{
closeWindow();
}
private static void closeWindow()
{
// retrieve the handler of the window of Word
// Class name, Window Name
int iHandle = FindWindow("OpusApp", "Document1 - Microsoft Word");
if (iHandle > 0)
{
//close the window using API
SendMessage(iHandle, WM_SYSCOMMAND, SC_CLOSE, 0);
}
}
}
}
但我想知道在这种情况下如何才能杀死 oldest 单词 Window?如果进程可以对 StartTime 进行排序以杀死最旧的......但我认为这应该包含在另一个问题中,谢谢。
好吧,从外观上看,如果您的应用程序有多个顶级 Windows,任务管理器会显示多个条目,即使它们都属于同一个进程。
当您单击“结束任务”时,任务管理器会向选定的 window 发送 WM_CLOSE
message。仅关闭一个 window 而不是其他