2015-03-03 95 views
1

爲 'RootVisual' 的定義在此代碼 「RootVisual」 在WP8.1不包含的Windows Phone 8.1

(Application.Current.RootVisual as 
    PhoneApplicationFrame).Navigate(new Uri("/FeedBackMessageBox.xaml", 
    UriKind.Relative)); 

回答

3

Application.RootVisual是不存在只對Silverlight應用程序。對於Windows Phone的應用程序運行時使用Windows.UI.Xaml.Window.Content:

(Windows.UI.Xaml.Window.Current.Content as Frame).Navigate(typeof(FeedBackMessageBox),args); 

在Windows運行的應用程序的導航更多詳情,請參見Quickstart: Navigating between pages (XAML)

+0

感謝它的工作 – 2015-03-03 07:11:53

相關問題