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






Gets or sets a value that indicates whether this frame can host nested frames to support child navigation.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Common Properties")>
Public Property AllowNestedFrameNavigation As Boolean
Visual Basic (Usage)Copy Code
Dim instance As UXFrame
Dim value As Boolean
 
instance.AllowNestedFrameNavigation = value
 
value = instance.AllowNestedFrameNavigation
C# 
[CategoryAttribute("Common Properties")]
public bool AllowNestedFrameNavigation {get; set;}
Delphi 
public read-write property AllowNestedFrameNavigation: Boolean; 
JScript 
CategoryAttribute("Common Properties")
public function get,set AllowNestedFrameNavigation : boolean
Managed Extensions for C++ 
[CategoryAttribute("Common Properties")]
public: __property bool get_AllowNestedFrameNavigation();
public: __property void set_AllowNestedFrameNavigation( 
   bool value
);
C++/CLI 
[CategoryAttribute("Common Properties")]
public:
property bool AllowNestedFrameNavigation {
   bool get();
   void set (    bool value);
}

Example

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

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.

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.