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 designer showing full-browser layout capabilities
circle-info

For a full list of properties, methods and events see the API documentation.arrow-up-right

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.

circle-info

Calling Show() will not dispose any previously-shown Page, but rather it stays in the Application.OpenPages collection for later usage.

Showing a previously-hidden Page:

Setting MainPage

If a Page needs to be replaced, set the Application.MainPage property.

circle-info

Setting Application.MainPage will not dispose any previously-shown Page, but rather it stays in the Application.OpenPages collection for later usage.

circle-exclamation

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

Item
Description

Class name

"wisej.web.ScrollablePage"

Theme appearance

Child components

"pane" is the page. See JavaScript.

Last updated

Was this helpful?