Page
Represents a web page that fills the browser and acts as the main container for the application. An application can have only one active page at any given time.
The Page
control is the center point of activity in a Wisej.NET application. It's a container used to show content to a user (alongside the Form and Desktop).
Only one Page
can be shown to the user at a time.

Page Navigation
There are several ways to navigate between pages in a Wisej.NET application.
Show()
Using the Show()
method on a Page
instance will show the page to the user, replacing any previously-displayed page.
Showing a previously-hidden Page:
Application.OpenPages["nameOfMyPage"].Show();
Setting MainPage
If a Page
needs to be replaced, set the Application.MainPage
property.
Switching the application's page will not affect the shown Form
instances.
Features
AutoScroll
The AutoScroll
property of the Page
control determines whether scroll bars automatically appear when the control contents exceed its visible area.
Advanced
JavaScript Widget
Class name
"wisej.web.ScrollablePage"
Theme appearance
"page", see Themes.
Child components
"pane" is the page. See JavaScript.
Source code
Last updated
Was this helpful?