Windows Phone 8.1无法识别要导航到的页面

时间:2016-01-12 03:19:37

标签: c# navigation windows-phone-8.1

在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?)

1 个答案:

答案 0 :(得分:0)

您必须在页面中添加视图public function findAllExcepcionesByItem($itemId) { $query = $this->createQueryBuilder('p') ->leftJoin('p.item', 'i') ->where('i.id = :actual')->setParameter('actual', $itemId) ->andWhere('p.excepcion != :null')->setParameter('null', serialize(null)) //not null ->andWhere('p.excepcion != :empty')->setParameter('empty', serialize([])) //not empty ->getQuery(); return $query->getResult(); } 的命名空间。

  

使用App1.Views;

其中

(ImageFullScreen)是您的项目名称

App1是放置ImageFullScreen.xaml文件的文件夹名称。

如果在项目中直接创建了ImageFullScreen.xaml,请使用

  

使用App1;