Intersoft ClientUI Documentation
IsChildNavigation Property
Example 



Gets or sets a value indicating whether the specified uniform resource identifier (URI) should be processed in child-level navigation.
Syntax
Public Property IsChildNavigation As Boolean
Dim instance As UriMapping
Dim value As Boolean
 
instance.IsChildNavigation = value
 
value = instance.IsChildNavigation
public bool IsChildNavigation {get; set;}
public:
property bool IsChildNavigation {
   bool get();
   void set (    bool value);
}
Remarks
You set IsChildNavigation property to true for the UriMapping which defines page that contains nested navigation frame. For more information, see Advanced Features in ClientUI Navigation Framework.
Example
The following examples show how to implement IsChildNavigation for using nested navigation.
<Intersoft:UXFrame x:Name="ContentFrame"
                   AllowNestedFrameNavigation="True">
    <Intersoft:UXFrame.UriMapper>
        <Intersoft:UriMapper>
            <Intersoft:UriMapping Uri="" MappedUri="/Views/Home.xaml"/>
            <Intersoft:UriMapping Uri="/Customers/{ID}" MappedUri="/Views/Customers.xaml" IsChildNavigation="True"/>
            <Intersoft:UriMapping Uri="/Error" MappedUri="/ErrorPage.xaml"/>
            <Intersoft:UriMapping Uri="/Register" MappedUri="/Views/Login/RegisterForm.xaml"/>
            <Intersoft:UriMapping Uri="/{page}" MappedUri="/Views/{page}.xaml"/>
        </Intersoft:UriMapper>
    </Intersoft:UXFrame.UriMapper>
</Intersoft:UXFrame>
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

UriMapping Class
UriMapping Members
Navigation Overview

Send Feedback