32770 对话框的类。
我使用 chrome 远程桌面连接到我的电脑。
图像:https ://social.msdn.microsoft.com/Forums/getfile/1410849
我该如何隐藏它?
Process[] Memory = Process.GetProcesses();
foreach (Process prc in Memory)
{
if (prc.ProcessName == "remoting_desktop.exe" || prc.ProcessName == "remoting_desktop")
{
ShowWindow(prc.MainWindowHandle, 0);
}
}
不管用。