Windows Phone 8.1无法识别要导航到的页面
本文关键字:导航 识别 Phone Windows | 更新日期: 2023-09-27 18:29:50
在Windows Phone 8.1应用程序上,我正试图将数据从MainPage页面传递到ImageFullScreen页面。我正在传递来自.shared文件(MainPage.cs)的数据,但它无法识别ImageFullScreen页面。我是不是错过了什么?
public class PassedData
{
public string Name { get; set; }
}
private void ListItems_Tapped(object sender, TappedRoutedEventArgs e)
{
Frame.Navigate(typeof(ImageFullScreen), new PassedData { Name = "my name"});
}
错误:
The type or namespace name 'ImageFullScreen' could not be found (are you missing a using directive or an assembly reference?)
您必须在页面中添加视图(ImageFullScreen)
的名称空间。
使用App1.Views;
何处
App1
是您的项目名称
Views
是ImageFullScreen.xaml文件所在的文件夹名称。
如果ImageFullScreen.xaml是直接在您的项目中创建的,请使用
使用App1;