无法将system.uri转换为system.type

时间:2016-10-07 08:26:41

标签: c# win-universal-app uwp

我正在visual studio 2015中创建一个新的通用Windows应用程序。在主页面中,我使用框架将一个页面导航到另一个页面。但我不能指定页面导航。它显示像这样的错误无法将System.uri转换为System.Type 。我不知道为什么相同的代码在wpf中正常工作但我无法在UWP中工作。这是什么原因??

  var html = "";
  var Myheader = ["Group-of-Signals name", "Group-of-Signals description", "Signal name", "Signal data type", "Signal unit of measurement",
    "Signal description", "Signal ID", "Signal index"
  ];
  $.each(data, function(key, value) {
    html += "<div class=\"row\"></div>";
    Myheader.forEach(function(key) {
      html += "<div class=\"cell\">" + value[key] + "</div>";

    })
  });

这是我的代码如何更改该参数的类型。 大型机是我的框架名称。

1 个答案:

答案 0 :(得分:2)

在UWP中,Frame.Navigate方法将Page的类型作为参数:

mainframe.Navigate(typeof(firstpagedemo));