c# - Open a WPF Application from a Windows Button click Event -
is possible open wpf application c# windows button click event?
you can launch other applicaiton. use process.start method. if need more control, can create instance of process class (process process = new process()
)and adjust properties. can see process class's members here.
Comments
Post a Comment