1
今日、私はWindows Phoneの開発方法を学び始めました。質問があります。WP7の画面間の移行方法は?
メイン画面(MainPage.xaml)と第2画面(TaskPage.xaml)があります。 これらの画面の間を移動したいと考えています。
私が書いた:
var frame = Application.Current.RootVisual as PhoneApplicationFrame;
frame.Source = new Uri("/TaskPage.xaml", UriKind.Relative);
を私はエミュレータでそれを実行しましたが、Visual StudioはラインでMainPage.g.i.isにエラーを返す:
System.Windows.Application.LoadComponent(this, new System.Uri("/Appname;component/MainPage.xaml", System.UriKind.Relative));
いただきましたの?申し訳ありませんが悪い英語と答えに感謝します。あなたがframe.Sourceを変更して、あなたの現在のコードでは
NavigationService.Navigate(new Uri("/TaskPage.xaml", UriKind.Relative));
:
ありがとう – tbsasa