有人可以告诉我如何在C#中获取Windows控制台应用程序的句柄吗?在Windows Forms应用程序中,我通常会尝试this.Handle。
this.Handle
不确定它是否有效,但是您可以尝试:
IntPtr handle = Process.GetCurrentProcess().MainWindowHandle;