We would like to open a wpf app from a console app and pass objects which were initialized in the console app to the wpf app. Just wondering if this is possible.
Thanks
N
We would like to open a wpf app from a console app and pass
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use the command line and pass serialized objects as arguments but this will only work 1 time, when you start the wpf app.
If you need to maintain an ongoing conversation between the two you will need to host a wcf service in the wpf app and talk to it that way.
IMO hosting a service in the WPF app is the best way to go.