Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
Page Class
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
Page Class

Updated: November 2007

Encapsulates a page of content that can be navigated to and hosted by Windows Internet Explorer, NavigationWindow, and Frame.

Namespace:  System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/xaml/presentation

Visual Basic (Declaration)
<ContentPropertyAttribute("Content")> _
Public Class Page _
    Inherits FrameworkElement _
    Implements IAddChild
Visual Basic (Usage)
Dim instance As Page
C#
[ContentPropertyAttribute("Content")]
public class Page : FrameworkElement, IAddChild
Visual C++
[ContentPropertyAttribute(L"Content")]
public ref class Page : public FrameworkElement, 
    IAddChild
J#
/** @attribute ContentPropertyAttribute("Content") */
public class Page extends FrameworkElement implements IAddChild
JScript
public class Page extends FrameworkElement implements IAddChild
XAML Object Element Usage
<Page>
  Content
</Page>

Page encapsulates a page of content that can be navigated, and has the following key members:

A page can be defined by using markup, markup and code-behind, or code. A page is the preferred way to package content for navigation, for the following reasons:

A page can be hosted from Window, NavigationWindow, Frame, UserControl, or from a browser. To be hosted, a page can be:

An application typically has two or more pages, which can be navigated between using the following mechanisms:

For structured navigation using page functions (PageFunction<(Of <(T>)>)), see Structured Navigation Overview and Navigation Topologies Overview.

The following example shows how a standard page is defined using only markup:

C#
<Page 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    Title="Markup Page">
  <!-- Page Content Goes Here -->
</Page>

The following example shows how a standard page is defined using only code:

C#
using System.Windows.Controls;

public class CodePage : Page
{
    public CodePage() {}
}

The following example shows how a standard page is defined using a combination of markup and code-behind.

C#
<Page 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="MarkupAndCodeBehindPage"
    Title="Markup And Code-Behind Page">
  <!-- Page Content Goes Here -->
</Page>

C#
using System.Windows.Controls;

public partial class MarkupAndCodeBehindPage : Page
{
    public MarkupAndCodeBehindPage()
    {
        InitializeComponent();
    }
}

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Windows Vista

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Consistency in Examples Would Help Here      magnets   |   Edit   |  
In some examples you say "
<!-- Page Content Goes Here -->
" and in other examples you do not say that. Your examples should be consistent. Obviously you needed or wanted to give the example of where the Page Content is defined. So, give that in each example.
Tags What's this?: Add a tag
Flag as ContentBug
Processing
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker