I have a Console application listining to a WCF service hosted inside a WPF application. The moment console application calls WCF sercive, I am transferring focus to WPF application using the following code.
/// <summary>
/// This method is used to focus Application while printing.
/// </summary>
/// <param name="briefAppName"></param>
public void ActivateApplication(string briefAppName)
{
Process procList = GetApplicationProcess(briefAppName);
if (procList != null)
{
if (!(procList.MainWindowHandle == GetForegroundWindow())) //If Application is alreay focussed,donot focus.
{
ShowWindow(procList.MainWindowHandle, SW_MAXIMIZE);
SwitchToThisWindow(procList.MainWindowHandle, true);
//SetForegroundWindow(procList.MainWindowHandle);
}
}
}
/// <summary>
/// This function is used to find Process on the Client computer.
/// </summary>
/// <param name="applicationName"></param>
/// <returns></returns>
private Process GetApplicationProcess(string applicationName)
{
Process ediscProcess = null;
foreach (Process p in Process.GetProcesses("."))
{
try
{
if (p.MainWindowTitle.Length > 0)
{
if (string.CompareOrdinal(p.MainWindowTitle, applicationName) == 0)
{
ediscProcess = p;
break;
}
}
}
catch
{
throw;
}
}
return ediscProcess;
}
I have a Navigation Manager which opens a ModalPopUp
/// <summary>
/// This opens the window
/// </summary>
/// <typeparam name="T">The type of data context</typeparam>
/// <param name="view">The View to be opened</param>
/// <param name="dataContext">The datacontext of the view</param>
public static void OpenWindow<T>(Views view, T dataContext)
{
Window page = (Window)Activator.CreateInstance(Type.GetType(typeof(NavigationManager).Namespace + "." + view.ToString()));
page.DataContext = dataContext;
page.Owner = CurrentWindow;
page.Show();
}
From inside WPf service, I open this PopUp by using the following code.
printerWindowViewModal = new PrinterWindowViewModal(ClientCache.PrintedToFacilityCode);
printerWindowViewModal.FileName = _printRequest.FileName;
printerWindowViewModal.PreviousView = NavigationManager.CurrentView;
Action UIAction = new Action(delegate
{
NavigationManager.OpenModalWindow<PrinterWindowViewModal>(Views.NextPatientChart, printerWindowViewModal);
});
GetAccessToUIThread(UIAction); // This method gets access to the current dispatcher as WCF service is running on a seperate thread.
WPF application is focussed and modal dialog comes in case application is not minimized. Problem occurs when application is minimized and request comes to open a modal dialog. This dialog gets open up and is visible without my application. I can only see this popup window. I have tried all other window API's like ActivateWindow,SetForegroundWindow,SetForegroundWindow but none of them is able to focus both the application as well as the popup. Please help.