Tagged Questions
The navigateuri tag has no wiki summary.
5
votes
3answers
7k views
Passing parameters to a WPF Page via its Uri
In the context of a navigation-style WPF application (NavigationWindow, not XBAP):
Is it possible for a Hyperlink's NavigateUri to contain extra parameters, like path data or a querystring? E.g., is ...
3
votes
1answer
599 views
Differences between Silverlight's HtmlPage.Window.Navigate and HyperlinkButton?
I'm trying to get my Silverlight 4.0 application to launch the associated program file a file extension when the user clicks something to take them to its web URL, but I'm having difference ...
2
votes
2answers
96 views
NavigationService complaining about “FileNotFound” executing from class not attached to any view
I'm trying to navigate to another page (using UriMapping) from some class, that handles Server API, but it is not works. Here my code:
public void processResponce(item Response)
{
try
{
...
1
vote
2answers
299 views
ShellToast.NavigationUri ignored - the toast takes me to MainPage.xaml // WP7.1 Mango
I've been playing with the background tasks and everything is fine (but bizzar), but now I try to do something like this:
protected override void OnInvoke(ScheduledTask task)
{
if ...
1
vote
1answer
453 views
Silverlight 4.0: HyperlinkButton
How to redirect your navigateuri of hyperlinkbutton to your isolatedstorage?
or
Is there a workaround to display data from isolatedstorage to new browser?
0
votes
1answer
31 views
navigate to a particular part of a scrolllview
I have an horizontal scrollview composed of 3 linear layouts (3pages).
How can I navigate to the 3rd layout of my scrollview? (by default, it navigates on the 1st layout of the page)
Thanks a lot for ...
0
votes
0answers
424 views
0
votes
1answer
198 views
Navigate to new instance of page in silverlight
I have an issue where I have a hyperlinkbutton (exists in the master page) that navigates to a "Project" page without any id, and therefore creates a new project as nothing exists. However, if I've ...
0
votes
1answer
230 views
Calling and processing response from Rest service in WP7 app
I am new to WP7 and I am working on a WP7 app that communicates with a Rest service using C#. I have been able to successfully develop the async code using HttpWebRequest to interact with it.
...
0
votes
1answer
252 views
Is there a way to add a Binding to the NavigateUri property on a HyperLink in WPF?
I am adding a link to my WPF app using Hyperlink in a TextBox:
<TextBlock Margin="480,92,460,713" Height="24">
<Hyperlink NavigateUri="{Binding MyLink}" ...