Intersoft ClientUI Documentation
UXPage Class
Members  Example 



Encapsulates content that can be navigated to by a Navigator such as UXFrame and UXNavigationWindow.
Syntax
<DescriptionAttribute("Encapsulates content that can be navigated to by a Navigator such as UXFrame and UXNavigationWindow.")>
Public Class UXPage 
   Inherits System.Windows.Controls.Page
   Implements Intersoft.Client.Framework.ISupportAuthenticationIntersoft.Client.Framework.IWindowHost 
Dim instance As UXPage
[DescriptionAttribute("Encapsulates content that can be navigated to by a Navigator such as UXFrame and UXNavigationWindow.")]
public class UXPage : System.Windows.Controls.Page, Intersoft.Client.Framework.ISupportAuthenticationIntersoft.Client.Framework.IWindowHost  
[DescriptionAttribute("Encapsulates content that can be navigated to by a Navigator such as UXFrame and UXNavigationWindow.")]
public ref class UXPage : public System.Windows.Controls.Page, Intersoft.Client.Framework.ISupportAuthenticationIntersoft.Client.Framework.IWindowHost  
Remarks

The UXPage class enables you to easily create a Silverlight application that supports navigation. You use the UXPage class to create pieces of content that support navigation from within a UXFrame. The UXPage represents discrete sections of navigable content, while the UXFrame control acts as a container for the page controls which is also referred as navigation host, and facilitates navigation to pages.

For more information, see Navigation Overview.

Example
The following example shows a how-to implement a UXPage by creating a new XAML page and define the markup as the root type of the XAML.
<Intersoft:UXPage 
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        mc:Ignorable="d"
        xmlns:Intersoft="http://intersoft.clientui.com/schemas"
        x:Class="ClientUIBusinessApp1.Settings" 
        Title="New Page"
        d:DesignWidth="800" d:DesignHeight="600">

    <Grid x:Name="LayoutRoot">

    </Grid>
</Intersoft:UXPage>
Inheritance Hierarchy

System.Object
   System.Windows.DependencyObject
      System.Windows.UIElement
         System.Windows.FrameworkElement
            System.Windows.Controls.Control
               System.Windows.Controls.UserControl
                  System.Windows.Controls.Page
                     Intersoft.Client.UI.Navigation.UXPage

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

UXPage Members
Intersoft.Client.UI.Navigation Namespace
Navigation Overview

Send Feedback