Skip to content

Instantly share code, notes, and snippets.

@kw0006667
Created December 3, 2012 17:48
Show Gist options
  • Save kw0006667/4196689 to your computer and use it in GitHub Desktop.
Save kw0006667/4196689 to your computer and use it in GitHub Desktop.
接受「搜尋」的字串
protected override void OnSearchActivated(SearchActivatedEventArgs args)
{
base.OnSearchActivated(args);
Frame rootFrame = new Frame();
rootFrame.Navigate(typeof(MainPage), args.QueryText);
Window.Current.Content = rootFrame;
Window.Current.Activate();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment