Created
December 3, 2012 17:48
-
-
Save kw0006667/4196689 to your computer and use it in GitHub Desktop.
接受「搜尋」的字串
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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