Open a WPF Application from a Windows Button click Event
Is it possible to open a WPF Application from a C# Windows button click event?开发者_运维技巧
You can launch it like any other applicaiton. Use the Process.Start method. If you need more control, you can create an instance of the Process class (Process process = new Process()
)and adjust its properties. You can see the Process class's members here.
Absolutely. You should look into System.Diagnostics.Process.
精彩评论