I connect to the my pc with chrome remote desktop.
img : https://social.msdn.microsoft.com/Forums/getfile/1410849
How can I hide it?
Process[] Memory = Process.GetProcesses();
foreach (Process prc in Memory)
{
if (prc.ProcessName == "remoting_desktop.exe" || prc.ProcessName == "remoting_desktop")
{
ShowWindow(prc.MainWindowHandle, 0);
}
}
is not working.
I'm not sure exactly what you're asking but if you're having trouble minimizing a particular window you could try to minimize all of them.
This thread may help: Minimizing all open windows in C#