C#showwindow不起作用(#32770(对话框))

时间:2019-04-03 00:03:21

标签: c# api showwindow chrome-remote-desktop

32770对话框的类。

我使用chrome远程桌面连接到我的电脑。

img: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);
            }
        }

不起作用。

1 个答案:

答案 0 :(得分:0)

我不确定您要问的是什么,但是如果您在最小化特定窗口时遇到问题,可以尝试将所有窗口最小化。

该线程可能有帮助:Minimizing all open windows in C#