Intersoft ClientUI Documentation
IsChildNavigation Property
See Also  Example Send Feedback
Intersoft.Client.UI.Navigation Namespace > UriMapping Class : IsChildNavigation Property






Gets or sets a value indicating whether the specified uniform resource identifier (URI) should be processed in child-level navigation.

Syntax

Visual Basic (Declaration) 
Public Property IsChildNavigation As Boolean
Visual Basic (Usage)Copy Code
Dim instance As UriMapping
Dim value As Boolean
 
instance.IsChildNavigation = value
 
value = instance.IsChildNavigation
C# 
public bool IsChildNavigation {get; set;}
Delphi 
public read-write property IsChildNavigation: Boolean; 
JScript 
public function get,set IsChildNavigation : boolean
Managed Extensions for C++ 
public: __property bool get_IsChildNavigation();
public: __property void set_IsChildNavigation( 
   bool value
);
C++/CLI 
public:
property bool IsChildNavigation {
   bool get();
   void set (    bool value);
}

Example

The following examples show how to implement IsChildNavigation for using nested navigation.
XAMLCopy Code
<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>

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.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.