﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - ClientUI - navigate page</title><link>http://www.intersoftsolutions.com/Community/ClientUI/navigate-page/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>navigate page</title><link>http://www.intersoftsolutions.com/Community/ClientUI/navigate-page/</link><pubDate>Thu, 27 Sep 2012 23:12:37 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;In order to navigate to a new page but open a new instance through code, we need to set the value of NavigateUri and TargetName.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;For example:&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;Intersoft:UXNavigationButton x:Name="UXNavigationButton1"
                              Content="Community"
                              NavigateUri="http://www.intersoftpt.com/Community/"
                              TargetName="_blank" /&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;To do this using MVVM, we need to have two string type properties in the ViewModel and bind them to NavigateUri and TargetName.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Hope this help.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>navigate page</title><link>http://www.intersoftsolutions.com/Community/ClientUI/navigate-page/</link><pubDate>Thu, 27 Sep 2012 04:56:05 GMT</pubDate><dc:creator>zen8019</dc:creator><description>&lt;p&gt;Thanks...whatabout this part, thanks&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p /&gt;
&lt;p style="font-family: 'lucida grande', 'segoe ui', arial, verdana, tahoma; line-height: 18px; margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(63, 63, 63); font-size: 12px; background-color: rgb(255, 255, 255); "&gt;Can I also ask how to navigate to a new page but open a new instance through code.&lt;/p&gt;
&lt;p style="font-family: 'lucida grande', 'segoe ui', arial, verdana, tahoma; line-height: 18px; margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(63, 63, 63); font-size: 12px; background-color: rgb(255, 255, 255); "&gt;I can see you use targeturi= _blank when in  xaml but not sure how to do using MVVM&lt;/p&gt;
&lt;p style="font-family: 'lucida grande', 'segoe ui', arial, verdana, tahoma; line-height: 18px; margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(63, 63, 63); font-size: 12px; background-color: rgb(255, 255, 255); "&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style="font-family: 'lucida grande', 'segoe ui', arial, verdana, tahoma; line-height: 18px; margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(63, 63, 63); font-size: 12px; background-color: rgb(255, 255, 255); "&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p /&gt;</description></item><item><title>navigate page</title><link>http://www.intersoftsolutions.com/Community/ClientUI/navigate-page/</link><pubDate>Fri, 21 Sep 2012 05:21:42 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;The ClientUI navigation framework is built around the commanding semantics which allows certain features of the navigation to be executed through declarative definition in the XAML markup. The commanding semantics is also an ideal approach for MVVM pattern development.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;The following code example shows how to navigate to a page using BrowseBack command assigned in a button.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Note: the code is implemented in the ViewModel using DelegateCommand-ing.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;private void NavigateCommandAction(object parameter)
{
    NavigationCommands.BrowseBack.Execute(null, (UIElement)ISFocusManager.GetFocusedElement());
            
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>navigate page</title><link>http://www.intersoftsolutions.com/Community/ClientUI/navigate-page/</link><pubDate>Thu, 20 Sep 2012 10:47:00 GMT</pubDate><dc:creator>zen8019</dc:creator><description>&lt;p&gt;I want to add my own button to navigate backward to previous page. How do I do this using MVVM?&lt;/p&gt;&lt;p&gt;I've seen some code&lt;/p&gt;&lt;pre&gt;if (ContentFrame.CanGoBack)
{
    ContentFrame.GoBack();
}&lt;/pre&gt;
&lt;p&gt;How do I get a handle to the ContentFrame of the parent from the page I moved to.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Can I also ask how to naviage to a new page but open a new instance through code.&lt;/p&gt;
&lt;p&gt;I can see you use targeturi= _blank when in  xaml but not sure how to do using MVVM&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>