Page
Wisej.Web.Page
Last updated
Was this helpful?
Wisej.Web.Page
Last updated
Was this helpful?
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.0.0.0)
Represents a web page that fills the browser and acts as the main container for the application. An application can have only one active main page at any given time.
To show the page assign it to the property.
Initializes a new instance of the class.
Validates all the child controls in the container. Exactly which controls are validated and which controls are skipped is determined by flags .
flags
Bindable components implement this interface.
Provides the functionality for a control to act as a parent for other controls.
All wisej components implement this interface.
All wisej top-level windows implement this interface.
Allows an object to serialize itself.
: Returns or sets the button that is clicked when the user presses the ENTER key.
: Returns true if this page instance is the currently active page. It is the same as comparing the instance with .
: Returns the currently active page for this application. It's the same as , it is added to be consistent with .
: Returns or sets whether the container enables the user to scroll to any controls placed outside of its visible boundaries.
: Returns or sets how the control performs validation when the user changes focus to another control.
: Returns or sets the button control that is clicked when the user presses the ESC key.
: Returns or sets the height of the page.
: Returns the height and width of the page.
: Returns or sets the title of the . If the page is the main page, setting the text also changes the title in the browser.
: Returns or sets the width of the page.
Validates all selectable child controls in the container, including descendants. This is equivalent to calling ValidateChildren(ValidationConstraints.Selectable). See for details of exactly which child controls will be validated.
Returns: . true if all of the children validated successfully; otherwise, false. If called from the or event handlers, this method will always return false.
Places restrictions on which controls have their event raised.
Returns: . true if all of the children validated successfully; otherwise, false. If called from the or event handlers, this method will always return false.
Fired when the page becomes active, and it's the new .
Fired when the page is deactivated and it's no longer the .
Fired before the control becomes visible for the first time.
All wisej controls derived from the class must implement this interface.