How can I launch the wp7 built-in Bing search from an application
I would like to be able to invoke the Bing built-in search application from my silverlight based wp7 application when the user clicks on a 开发者_如何学Cbutton in my application. Is this possible?
You need to use a SearchTask
http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.searchtask(v=VS.92).aspx
SearchTask searchTask = new SearchTask();
searchTask.SearchQuery = "Overflow7";
searchTask.Show();
精彩评论