Hi! I opened Xbox Music App from click on picture box using following code:
private void pictureBox2_Click(object sender, EventArgs e) { SendKeys.Send("^{ESC}"); SendKeys.Send("Music"); SendKeys.Send("{ENTER}"); }
Now. I need to close that app with hit on ESC button from keyboard and I should return back to my active windows form.
Any Help??