使用Uri Launcher访问Intranet门户

时间:2015-07-15 05:30:00

标签: windows-phone-8 windows-8 microsoft-metro

如何通过Windows 8网格应用中的平铺点击事件打开网页?我已经尝试修改此事件处理程序,但我得到一个错误,因为它需要一个文本值。

我使用了以下代码,但只有在我手动输入值但我希望它从数据源获取值时它才有效。

   void ItemView_ItemClick(object sender, ItemClickEventArgs e)
    {
        // Navigate to the appropriate destination page, configuring the new page
        // by passing required information as a navigation parameter
      var itemId = ((SampleDataItem)e.ClickedItem).URL;
    //  this.Frame.Navigate(typeof(ItemDetailPage), itemId);

      Launcher.LaunchUriAsync(new Uri(itemId));

    }

更新:所以我想出它为什么不起作用,我指的是一个内部网页链接,有人知道如何修复它吗?

0 个答案:

没有答案