How to make WPF app work as a child process in Citrix
        Posted  
        
            by RichardOD
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by RichardOD
        
        
        
        Published on 2010-06-03T19:22:32Z
        Indexed on 
            2010/06/03
            19:24 UTC
        
        
        Read the original article
        Hit count: 310
        
I am working on a 3rd party application that allows plugins to be written in .NET 1.1. I have decided I would like to write my plugin in a seperate process that is called from the .NET 1.1 application (achieved using Process.Start). This is fine- I create a new process that is a WPF app.
When I launch this through MSTSC everything works as expected, however when I run the app through Citrix, the WPF child app fails to render correctly, and the mouse position starts going crazy- the child process window is basically not usable. Is there a way to avoid this happening?
If I create a seperate WPF application and deploy this through Citrix everything works fine. If I create a child Windows forms app in .NET 3.5, that also works fine.
© Stack Overflow or respective owner