在Windows Phone中使用PushSharp时,我会发送通知,其中包含指向我应用中视图的深层链接。
push.QueueNotification(new WindowsPhoneToastNotification()
.ForEndpointUri(new Uri(endpoint))
.ForOSVersion(WindowsPhoneDeviceOSVersion.Eight)
.WithBatchingInterval(BatchingInterval.Immediate)
.WithNavigatePath("/Views/DetailView.xaml")
.WithParameter("slug", slug)
.WithText1(text)
.WithText2(message));
但是当吐司出现并触摸它以打开应用程序时,应用程序将打开我的默认视图而不是请求的DetailView。
这不应该打开我的DetailView吗?
答案 0 :(得分:0)
你可能想尝试一下“〜/ Views / DetailView.xaml”的路径......