DDJ
DDJ

Reputation: 855

Making a C# console application interact with wpf

If this is possible, I would like to make in C# a wpf application that has a console window in it. Also, I would like to have the console interact with the WPF form so that if you are complete with a console activity it can tell the wpf application and close. I guess this would be a basic inheritance program, but with a console/simulated console included.

Upvotes: 2

Views: 1421

Answers (1)

Gustavo F
Gustavo F

Reputation: 2206

You want something called interprocess communication.

There is a lot of ways of do that, but the easiest is the Named Pipes IMHO.

Upvotes: 2

Related Questions