System.Windows.Forms.Button button = new System.Windows.Forms.Button();
button.Click += new EventHandler(btnClick_Handler);
private void btnClick(object sender, EventArgs e)
{
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.Start("myapp.exe");
}