Intersoft ClientUI Documentation
AllowNestedFrameNavigation Property
Example 



Gets or sets a value that indicates whether this frame can host nested frames to support child navigation.
Syntax
<CategoryAttribute("Common Properties")>
Public Property AllowNestedFrameNavigation As Boolean
Dim instance As UXFrame
Dim value As Boolean
 
instance.AllowNestedFrameNavigation = value
 
value = instance.AllowNestedFrameNavigation
[CategoryAttribute("Common Properties")]
public bool AllowNestedFrameNavigation {get; set;}
[CategoryAttribute("Common Properties")]
public:
property bool AllowNestedFrameNavigation {
   bool get();
   void set (    bool value);
}
Remarks

One of the features in UXFrame that makes it a versatile navigation framework is the full support for nested child navigation. Child navigation refers to the use of UXFrame inside a page that already hosted by upper level of frames. More importantly, UXFrame supports browser journal integration for the child level navigation, which is not supported in Silverlight's built-in or other navigation frameworks.

For more information on how to implement child navigation using ClientUI Navigation Framework, see Advanced Features in ClientUI Navigation Framework.

Example
The following examples show how to implement AllowNestedFrameNavigation 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

UXFrame Class
UXFrame Members
Navigation Overview

Send Feedback