开发者

Open a WPF Application from a Windows Button click Event

开发者 https://www.devze.com 2023-01-29 02:13 出处:网络
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 c

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消