Denis Gordin
Denis Gordin

Reputation: 902

How do I programmatically launch an application?

I'm trying to programmatically call an event to launch an application in Windows Phone 7. How do I go about doing this?

What I'm looking for is how do I schedule this event call? (for example, opening an app in WP7)?

Upvotes: 0

Views: 965

Answers (1)

Timotei
Timotei

Reputation: 1909

I think you are talking about Tasks. All available tasks can be consulted here: http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks(v=vs.92).aspx

The call app you are talking about is the PhoneCallTask: http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.phonecalltask(v=vs.92).aspx

If you want to call and app, that is, to open an application from the phone, you can't really do it. Please look at: Launching other applications in Windows phone 7 Programatically

Upvotes: 2

Related Questions