i used process.start in windows form to launch other program but now i want to use wpf to launch it . i uesd: Process virtualMouse = new Process();
virtual.StartInfo.FileName = "VirtualMouse.exe";
bool result = virtual.Start();
and i getting error:
the type or namespace name'Process' could not be found (are you missing a using directive or an assembly reference)
how to do it in wpf??