Iam starting the wpf application by using the process.start ,my wpf application is visible in task manager,but not visible in the front end,its running as a back ground process,can some one help in bringing the wpf app visible.
ProcessStartInfo startInfo = new ProcessStartInfo(programFilesPath);
//ProcessStartInfo startInfo = new
ProcessStartInfo("notepad.exe");
startInfo.WindowStyle = ProcessWindowStyle.Maximized;
startInfo.CreateNoWindow = false;
startInfo.UseShellExecute = false;
Process p = Process.Start(startInfo);