Skip to main content
Version: 4.1

Control

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Base class for all Wisej controls.

public class Control : IWisejControl, IWisejComponent, IBindableComponent, IWisejSerializable, IHasPropertyStore, IHasResponsiveProfiles, IDropTarget, IUserData

Constructors

Instance member Control()

Initializes a new instance of the Control class.

Properties

Instance member AccessibleDescription

String: Returns or sets the description that will be reported to accessibility client applications. It is assigned to the "alt" attribute of the browser element. (Default: null)

Instance member AccessibleName

String: Returns or sets the name of the control for use by accessibility client applications. It is assigned to the "name" attribute of the browser element. (Default: null)

Instance member AllowDrag

Boolean: Returns or sets whether the control can initiate a drag-drop operation. (Default: False)

Instance member AllowDrop

Boolean: Returns or sets whether the control can accept data that the user drags onto it. (Default: False)

Instance member Anchor

AnchorStyles: Returns or sets the edges of the container to which a control is bound and determines how a control is resized with its parent. (Default: Top, Left)

Instance member Anonymous

Boolean: Returns or sets whether the control receives pointer events. Anonymous controls let pointer events bubble to their parents. (Default: False)

Instance member AppearanceKey

String: Sets the appearance key for the theme engine. (Default: null)

Instance member BackColor

Color: Returns or sets the background color for the control.

Instance member BackgroundImage

Image: Returns or sets the background image displayed in the control. (Default: null)

Instance member BackgroundImageLayout

ImageLayout: Returns or sets the background image layout as defined in the ImageLayout enumeration. (Default: None)

Instance member BackgroundImageSource

String: Returns or sets the background image displayed in the control. (Default: null)

Instance member BecomingActiveControl

Boolean: Returns a flag indicating that the control is becoming the active control.

Instance member BindingContext

BindingContext: Returns or sets the BindingContext for the control.

Instance member Bottom

Int32: Returns the distance, in pixels, between the bottom edge of the control and the top edge of its container's client area.

Instance member Bounds

Rectangle: Returns or sets the size and location of the control including its non-client area, in pixels and relative to the parent control.

Instance member CanExecute

Boolean: Determines whether the control can execute a command.

Instance member CanFocus

Boolean: Returns whether the control can receive focus.

Instance member CanSelect

Boolean: Returns whether the control can be selected.

Instance member Capture

Boolean: Returns or sets whether the control has captured the mouse.

Instance member CausesValidation

Boolean: Returns or sets whether the control causes validation to be performed on controls that require to be validated when this control receives focus. (Default: True)

Instance member ClientEvents

ClientEventCollection: Returns a collection of client events and JavaScript listeners. You may attach multiple listeners to same event.

You can use this collection at design time or in code or through the listener methods:

Instance member ClientRectangle

Rectangle: Returns the client rectangle of the control.

Instance member ClientSize

Size: Returns or sets the height and width of the client area.

Instance member ContainsFocus

Boolean: Indicates whether the control, or one of its child controls, has the input focus.

Instance member ContextMenu

ContextMenu: Returns or sets the shortcut menu associated with the control. (Default: null)

Instance member Controls

ControlCollection: Returns the collection of controls contained within the control.

Instance member Created

Boolean: Returns a value indicating whether the control has been created.

Instance member CssClass

String: Returns or sets additional CSS class names to add to the widget.

Use this property to add or remove custom CSS classes that you may add to your application as standard css files or through the StyleSheet extender.

You can assign multiple class names separated by a space and you can manage this property using the related methods:

Instance member CssStyle

String: Returns or sets the custom CSS styles to add to the widget.

You can use any CSS style string.



// set the border radius to 100% and make the control round.
this.button1.CssStyle = "border-radius:100%";


Instance member Cursor

Cursor: Returns or sets the cursor that is displayed when the mouse pointer is over the control. (Default: null)

Instance member DataBindings

ControlBindingsCollection: Returns the data bindings for the control.

Static member DefaultBackColor

Color: Returns the default background color of the control.

Protected member DefaultCursor

Cursor: Returns or sets the default cursor for the control.

Static member DefaultFont

Font: Returns the default font of the control.

Static member DefaultForeColor

Color: Returns the default background color of the control.

Protected member DefaultMargin

Padding: Returns the default value for the Margin property.

Protected member DefaultMaximumSize

Size: Returns the length and height, in pixels, that is specified as the default maximum size of a control.

Protected member DefaultMinimumSize

Size: Returns the length and height, in pixels, that is specified as the default minimum size of a control.

Protected member DefaultPadding

Padding: Returns the internal spacing, in pixels, of the contents of a control.

Protected member DefaultSize

Size: Returns the default size of the control.

Instance member DisplayRectangle

Rectangle: Returns the rectangle that represents the virtual display area of the control.

Instance member Disposing

Boolean: Returns whether the control is in the process of disposing itself and child controls.

Instance member Dock

DockStyle: Returns or sets which control borders are docked to its parent control and determines how a control is resized with its parent. (Default: None)

Instance member Enabled

Boolean: Returns or sets whether the control can respond to user interaction.

Instance member EnableNativeContextMenu

Boolean: Enables or disables the browser's context menu.

Instance member Focusable

Boolean: Returns or sets whether the control can gain the focus. (Default: True)

Instance member Focused

Boolean: Returns a value indicating whether the control has input focus.

Instance member Font

Font: Gets or sets the font of the text displayed by the control.

Instance member FontHeight

Int32: Returns or sets the height of the font of the control.

Instance member ForeColor

Color: Returns or sets the text color of the control.

Instance member Handle

IntPtr: Returns the unique server-side id (handle) for this component.

Instance member HasChildren

Boolean: Returns whether the control contains any child control.

Instance member HasDataBindings

Boolean: Returns whether the control specifies data bindings.

Instance member HasResponsiveProfiles

Boolean: Check if the control defines any responsive profile without forcing the creation of the collection.

Instance member HasUserData

Boolean: Checks if the UserData dynamic object was created and has any value.

Instance member Height

Int32: Returns or sets the height of the control.

Instance member InitScript

String: Returns or sets an initialization script to execute when the widget is created (or reloaded) in the browser.

Use this property to add custom initialization JavaScript that is always executed when the client widget is created.

The context (this) of the script is the instance of the widget. You can use the entire qooxdoo and wisej.js api. See #qx and wisej-js.


// change the background color of the internal label of the button widget.
this.button1.InitScript = "this.getChildControl('label').setBackgroundColor('red')";

// attach a JavaScript event handler.
this.textBox1.InitScript = @"this.addListener('keydown', function(e) {
if (e.getKeyIdentifier() == "PageDown") {
alert('You pressed PageDown.');
}
});


You may also use the init script to attach events to the widget or to its internal children. Event handlers can also be attached using the ClientEvents collection and the client events methods:

Instance member InvokeRequired

Boolean: Returns true when this control belongs to a session different than the currently executing thread.

Instance member IsDisposed

Boolean: Returns whether the control has been disposed.

Instance member IsHandleCreated

Boolean: Returns if the control has a server-side component id (handle) associated with it.

Instance member IsMirrored

Boolean: Returns whether the control is mirrored.

Instance member LayoutEngine

LayoutEngine: Returns the control's layout engine.

Instance member Left

Int32: Returns or sets the distance, in pixels, between the left edge of the control and the left edge of its container's client area.

Instance member Location

Point: Returns or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.

Instance member Margin

Padding: Returns or sets the space between controls.

Instance member MaximumSize

Size: Returns or sets the maximum size for the control.

Instance member MinimumSize

Size: Returns or sets the minimum size for the control.

Static member ModifierKeys

Keys: Returns a value indicating which of the modifier keys (SHIFT, CTRL, and ALT) is in a pressed state.

Static member MouseButtons

MouseButtons: Returns a value indicating which of the mouse buttons is in a pressed state.

Static member MousePosition

Point: Returns the position of the mouse cursor in screen coordinates.

Instance member Movable

Boolean: Returns or sets whether the control can be moved by dragging.

Instance member Name

String: Gets or sets the name of the control.

Instance member Padding

Padding: Returns or sets padding within the control.

Instance member Parent

Control: Returns or sets the parent container of the control.

Instance member PreferredSize

Size: Returns the preferred size in which the control can fit.

Instance member ResizableEdges

AnchorStyles: Returns or sets the edges of the control that can be dragged to resize the control.

Instance member ResponsiveProfiles

ResponsiveProfileCollection: Returns the collection of responsive properties that have been set for this control.

Int32: Return the distance, in pixels, between the right edge of the control and the left edge of its container's client area.

Instance member RightToLeft

RightToLeft: Returns or sets whether the control's elements are aligned right-to-left to support RTL languages.

When set to Inherit, the control inherits the value of this property from its parent.

However, when the control is a top-level control (i.e. Window, Page, Desktop), and the value is set to Inherit, the right-to-left mode is automatically retrieved from the current language.

info

The behavior of this property is configurable in Default.json setting the "rightToLeft" property to "true", "false", or "auto". The default is "auto", causing the value to be retrieved from the current language.

Instance member Selectable

Boolean: Returns or sets whether the text in the control can be selected in the browser by the user by dragging the pointer. Since 2.5.22 (Default: False)

Not to be confused with Selectable, which corresponds to the Focusable property. When Selectable is set to true, the text of the control (i.e. a label or a button) can be highlighted in the browser and copied to the clipboard. It will also make the widget "focusable" but only in the browser.

Static member SelectableDefault

Boolean: EXPERIMENTAL: Default value for the Selectable property. Since 4.1.1

The default is true. You can set the value by code or using AppContext switches: AppContext.SetSwitch("ControlSelectable", true);

Instance member ShowLoader

Boolean: Returns or sets whether the control is blocked by the ajax loader. (Default: False)

Instance member Size

Size: Returns or sets the height and width of the control.

Instance member States

String[]: Returns or sets additional theme states to the client widget.

Use this property to manage additional custom states that you may want to add to a widget. The state will update the visualization of the widget using the styles and properties set in the current theme and loaded theme mixins.

You can also force the usage of built-in states. However, this property will not return the current states of the widget as updated by the client browser. It only returns the states set by the application.


// force the widget to update the UI as if it was hovered and focused.
this.button1.States = new [] { "hovered", "focused" };

// apply a custom state defined in a custom theme or theme mixing.
this.panel1.States = new [] { "alert" };

In addition to setting this property directly, you can also manage it using the related methods:

Since 3.5.5 Add a + after the name of the state to propagate the state to the child controls of the widget. See also AddState.

Instance member TabIndex

Int32: Returns or sets the tab order of the control within its container.

Instance member TabStop

Boolean: Returns or sets whether the user can give the focus to this control using the TAB key and the Focusable property is set to true. (Default: True)

Instance member Tag

Object: Returns or sets the object that contains data about the control. (Default: null)

Instance member Text

String: Returns or sets the text associated with this control. (Default: "")

When AllowHtml is set to true, the text can contain HTML content. If the text contains new lines (CRLF) but doesn't contain HTML elements (at least one "<") all CRLF are automatically substituted with "<BR/>".

Instance member ToolTipText

String: Returns or sets the tooltip text to show for this control. (Default: "")

When using ToolTipText property you can only set the ToolTip text and cannot change the default ToolTip icon set in the theme.

To change the ToolTip icon you can either create a custom theme, or a theme mixin, or use the ToolTip extender and the ToolTipText property added by the extender.

You can change the default ForeColor, AutomaticDelay, InitialDelay, AutoPopDelay, or enable HTML in ToolTipText by using a ToolTip extender also without setting the ToolTipText property added by the extender.

Instance member Top

Int32: Returns or sets the distance, in pixels, between the top edge of the control and the top edge of its container's client area.

Instance member TopLevelControl

Control: Returns the parent control that is not parented by another Form. Typically, this is the outermost Form that the control is contained in.

Instance member UserData

Object: Returns a dynamic object that can be used to store custom data in relation to this control.

Instance member UseWaitCursor

Boolean: Returns or sets whether to use the wait cursor for the current control and all child controls. (Default: False)

Instance member ValidationCancelled

Boolean: Returns a flag indicating that the validation has been canceled.

Instance member Visible

Boolean: Returns or sets whether the control and all its child controls are displayed.

Static member WheelDelta

Int32: Returns a value indicating the wheel delta from the last wheel event.

Instance member Width

Int32: Returns or sets the width of the control.

Methods

Instance member AddClientEventListener(name, script)

Adds a new listener script to the event name to the client widget.

ParameterTypeDescription
nameStringName of the client event to attach the listener to.
scriptStringJavaScript code to execute when the event occurs.

Returns: Int32. An integer id that you can use to remove the listener from the event using RemoveClientEventListener or to retrieve the listener script code using GetClientEventListener.

The script will execute in the browser when the event name occurs. You can attach multiple listeners to the same event.

Instance member AddCssClass(name)

Adds the CSS class name to the widget element. If the class already exists in the CssClass it's not added.

ParameterTypeDescription
nameStringName of the css class to add.

Returns: String. The new value of the CssClass property.

Instance member AddState(state)

Adds the specified theme state to the widget.

ParameterTypeDescription
stateStringName of the custom state to add to the widget.

Returns: String[]. The new list of states stored in the States property.

You can also assign a new array of states to the States property.

Instance member AddState(state, forward)

Adds the specified theme state to the widget and optionally propagates it to the child components when forward is true. Since 3.5.5

ParameterTypeDescription
stateStringName of the custom state to add to the widget.
forwardBooleantrue to propagate the state to the widget's child components.

Returns: String[]. The new list of states stored in the States property.

You can also assign a new array of states to the States property.

Instance member BeginInvoke(method)

Executes the specified delegate asynchronously, in the context of the session that owns the control.

ParameterTypeDescription
methodDelegateA delegate to a method that takes no parameters.

Returns: IAsyncResult. An IAsyncResult that represents the result of the BeginInvoke operation.

Instance member BeginInvoke(method, args)

Executes the specified delegate asynchronously, in the context of the session that owns the control, with the specified list of arguments.

ParameterTypeDescription
methodDelegateA delegate to a method that takes no parameters.
argsObject[]An optional array of objects to pass as arguments to the specified method.

Returns: IAsyncResult. An IAsyncResult that represents the result of the asynchronous call.

Instance member BringToFront()

Brings the control to the front of the z-order.

Returns: Control.

Instance member Call(function, args)

Runs the JavaScript function within the component's context in the browser.

ParameterTypeDescription
functionStringThe name of the JavaScript function to execute.
argsObject[]The arguments to pass to the function.

Returns: Control. this control

Instance member Call(function, callback, args)

Runs the JavaScript function within the component's context in the browser and returns the value to the callback method.

ParameterTypeDescription
functionStringThe name of the JavaScript function to execute.
callbackAction<Object>Asynchronous callback method that receives the return value.
argsObject[]The arguments to pass to the function.

Returns: Control. this control

Instance member CallAsync(function, args)

Asynchronously runs the JavaScript function within the component's context in the browser and returns an awaitable Task containing the value returned by the remote call.

ParameterTypeDescription
functionStringThe name of the JavaScript function to execute.
argsObject[]The arguments to pass to the function.

Returns: Task<Object>. An awaitable Task that represents the asynchronous operation.

Instance member CenterToParent()

Centers the position of the control within the bounds of the parent.

Returns: Control. this control

Instance member CenterToParent(horizontal, vertical)

Centers the position of the control within the bounds of the parent either horizontally, vertically or both.

ParameterTypeDescription
horizontalBooleanCenter horizontally.
verticalBooleanCenter vertically.

Returns: Control. this control

Instance member Contains(control)

Indicates whether the specified control is a child of this control.

ParameterTypeDescription
controlControlThe child Control to find.

Returns: Boolean. true if the specified control is a child of the control; otherwise, false.

Instance member CreateControl()

Creates and register this control and all its children.

Returns: Control.

Protected member CreateControlsInstance()

Creates a new instance of the control collection for the control.

Returns: ControlCollection. An instance of ControlCollection.

Protected member Dispose(disposing)

Disposes the control.

ParameterTypeDescription
disposingBooleantrue when this method is called by the application rather than a finalizer.

Instance member DoDragDrop(data, allowedEffects)

Begins a drag-and-drop operation.

ParameterTypeDescription
dataObjectThe data to drag.
allowedEffectsDragDropEffectsOne of the DragDropEffects values.

Returns: DragDropEffects. A value from the DragDropEffects enumeration that represents the final effect that was performed during the drag-and-drop operation.

Instance member DoDragDrop(data, allowedEffects, imageSource)

Begins a drag-and-drop operation.

ParameterTypeDescription
dataObjectThe data to drag.
allowedEffectsDragDropEffectsOne of the DragDropEffects values.
imageSourceStringThe name or URL for an image to use as the drag cursor.

Returns: DragDropEffects. A value from the DragDropEffects enumeration that represents the final effect that was performed during the drag-and-drop operation.

Instance member DoDragDrop(data, allowedEffects, imageSource, imageSize)

Begins a drag-and-drop operation.

ParameterTypeDescription
dataObjectThe data to drag.
allowedEffectsDragDropEffectsOne of the DragDropEffects values.
imageSourceStringThe name or URL for an image to use as the drag cursor.
imageSizeSizeThe size of the drag image specified in

imageSource.

Returns: DragDropEffects. A value from the DragDropEffects enumeration that represents the final effect that was performed during the drag-and-drop operation.

Instance member DoDragDrop(data, allowedEffects, image)

Begins a drag-and-drop operation.

ParameterTypeDescription
dataObjectThe data to drag.
allowedEffectsDragDropEffectsOne of the DragDropEffects values.
imageImageAn Image to use as the drag cursor.

Returns: DragDropEffects. A value from the DragDropEffects enumeration that represents the final effect that was performed during the drag-and-drop operation.

Instance member DoDragDrop(data, allowedEffects, image, imageSize)

Begins a drag-and-drop operation.

ParameterTypeDescription
dataObjectThe data to drag.
allowedEffectsDragDropEffectsOne of the DragDropEffects values.
imageImageAn Image to use as the drag cursor.
imageSizeSizeThe size of the drag image specified in

image.

Returns: DragDropEffects. A value from the DragDropEffects enumeration that represents the final effect that was performed during the drag-and-drop operation.

Instance member EndInvoke(asyncResult)

Retrieves the return value from the asynchronous operation represented by asyncResult .

ParameterTypeDescription
asyncResultIAsyncResultAn IAsyncResult that represents a BeginInvoke operation started on a control.

Returns: Object. The return value from the asynchronous operation.

Instance member Eval(javaScript)

Runs the javaScript code within the component's context in the browser.

ParameterTypeDescription
javaScriptStringThe JavaScript code to run on the client.

Returns: Control. this control

Instance member Eval(javaScript, callback)

Runs the javaScript code within the component's context in the browser and returns the value to the callback method.

ParameterTypeDescription
javaScriptStringThe JavaScript code to evaluate on the client.
callbackAction<Object>Asynchronous callback method that receives the return value.

Returns: Control. this control

Instance member EvalAsync(javaScript)

Asynchronously runs the javaScript code within the component's context in the browser and returns an awaitable Task that contains the value returned by the remote call.

ParameterTypeDescription
javaScriptStringThe JavaScript code to evaluate on the client.

Returns: Task<Object>. An awaitable Task that represents the asynchronous operation.

Instance member FindForm()

Retrieves the Form that contains the control.

Returns: Form.

Instance member FindPage()

Retrieves the Page that contains the control.

Returns: Page.

Instance member Focus()

Sets input focus to the control.

Returns: Boolean. true if the input focus request was successful; otherwise, false.

Instance member GetAutoSizeMode()

Returns how a control will behave when its AutoSize property is enabled.

Returns: AutoSizeMode. One of the AutoSizeMode values.

Instance member GetChildAtPoint(pt, skipValue)

Retrieves the child control that is located at the specified coordinates, specifying whether to ignore child controls of a certain type.

ParameterTypeDescription
ptPointA Point that contains the coordinates where you want to look for a control. Coordinates are expressed relative to the upper-left corner of the control's client area.
skipValueGetChildAtPointSkipOne of the values of GetChildAtPointSkip, determining whether to ignore child controls of a certain type.

Returns: Control. The child Control at the specified coordinates.this control

Instance member GetChildAtPoint(pt)

Retrieves the child control that is located at the specified coordinates.

ParameterTypeDescription
ptPointA Point that contains the coordinates where you want to look for a control. Coordinates are expressed relative to the upper-left corner of the control's client area.

Returns: Control. A Control that represents the control that is located at the specified point.

Instance member GetClientEventListener(id)

Returns the script associated to the listener identified by id .

ParameterTypeDescription
idInt32Id of the listener to retrieve the script for.

Returns: String. JavaScript associated with the listener.

Instance member GetClientEventListener(name)

Returns the scripts for all the listeners attached to the event name .

ParameterTypeDescription
nameStringName of the event.

Returns: String[]. String array containing the scripts for the listeners attached to the event.

Instance member GetContainerControl()

Returns the next IContainerControl up the control's chain of parents.

Returns: IContainerControl. The parent IContainerControl.

Instance member GetIconAlign(alignment)

Converts ContentAlignment to the equivalent iconAlign value.

ParameterTypeDescription
alignmentContentAlignment

Returns: String.

Instance member GetNextControl(control, forward)

Retrieves the next control forward or back in the tab order of child controls.

ParameterTypeDescription
controlControlThe Control to start the search with.
forwardBooleantrue to search forward in the tab order; false to search backward.

Returns: Control. The next Control in the tab order.

Instance member GetStyle(flag)

Retrieves the value of the specified control style bit for the control.

ParameterTypeDescription
flagControlStylesThe ControlStyles bit to return the value from.

Returns: Boolean. true if the specified control style bit is set to true; otherwise, false.

Protected member GetTopLevel()

Determines if the control is a top-level control.

Returns: Boolean. true if the control is a top-level container: Form, Page, Desktop.

Instance member HasClientEventListener(name)

Checks whether the specified event name has any listener attached.

ParameterTypeDescription
nameStringName of the client event to verify.

Returns: Boolean. True if the event name has any listener attached.

Instance member HasCssClass(name)

Returns true if the property CssClass contains the specified class name .

ParameterTypeDescription
nameStringCss class name to verify.

Returns: Boolean. True of the css class name is already included in CssClass.

Instance member HasState(state)

Checks whether the specified theme state is present in the States property.

ParameterTypeDescription
stateStringName of the state to check.

Returns: Boolean. True if the widget already has the state .

To check only if a propagated state is present, use HasState("state+");

Instance member Hide()

Conceals the control from the user.

Returns: Control.

Instance member Invalidate()

Causes the control to update the client side widget. When in design mode, causes the rendered control to update its entire surface in the designer.

Instance member Invalidate(invalidateChildren)

Causes the control to update the client side widget. When in design mode, causes the rendered control to update its entire surface in the designer.

ParameterTypeDescription
invalidateChildrenBooleanWhen true, invalidates all the children of the control.

Instance member Invoke(method)

Executes the specified delegate, in the context of the session that owns the control.

ParameterTypeDescription
methodDelegateA delegate that contains a method to be called in the control's session context.

Returns: Object. The return value from the delegate being invoked, or null if the delegate has no return value.

Instance member Invoke(method, args)

Executes the specified delegate, in the context of the session that owns the control, with the specified list of arguments.

ParameterTypeDescription
methodDelegateA delegate to a method that takes parameters of the same number and type that are contained in the args parameter.
argsObject[]An array of objects to pass as arguments to the specified method. This parameter can be null if the method takes no arguments.

Returns: Object. An Object that contains the return value from the delegate being invoked, or null if the delegate has no return value.

Protected member InvokeOnClick(control, e)

Raises the Click event for the specified control.

ParameterTypeDescription
controlControlControl to invoke the event on.
eEventArgsEvent data.

Protected member IsInputChar(charCode)

Determines whether a character is an input character.

ParameterTypeDescription
charCodeCharThe character to test.

Returns: Boolean. true if the character is an input character; otherwise, false.

Protected member IsInputKey(keyData)

Determines whether the specified key is a regular input key.

ParameterTypeDescription
keyDataKeysOne of the Keys values.

Returns: Boolean. true if the specified key is a regular input key; otherwise, false.

Static member IsMnemonic(charCode, text)

Determines whether the specified character is the mnemonic character.

ParameterTypeDescription
charCodeCharThe character to test.
textStringThe string to search.

Returns: Boolean. true if the charCode character is the mnemonic character; otherwise, false.

Instance member LayoutChildren(dock, spacing, useMargins, hAlign, vAlign)

Arranges all the child Control using the specified dock style, spaced by spacing pixels.

ParameterTypeDescription
dockDockStyleIndicates whether to arrange the Controls horizontally or vertically.
spacing optionalInt32Spacing between the Controls.
useMargins optionalBooleanWhen true (default), it will also use the Margin to arrange the controls.
hAlign optionalHorizontalAlignmentHorizontal alignment when using dock = Fill, or Top, or Bottom.
vAlign optionalVerticalAlignmentVertical alignment when using dock = Fill, or Left, Right.

Instance member LayoutChildren(dock, viewArea, spacing, useMargins, hAlign, vAlign)

Arranges all the child Control using the specified dock style, spaced by spacing pixels.

ParameterTypeDescription
dockDockStyleIndicates whether to arrange the Controls horizontally or vertically.
viewAreaRectangleRectangle limiting the area to arrange the Controls in. If empty, it will use DisplayRectangle.
spacing optionalInt32Spacing between the Controls.
useMargins optionalBooleanWhen true (default), it will also use the Margin to arrange the controls.
hAlign optionalHorizontalAlignmentHorizontal alignment when using dock = Fill, or Top, or Bottom.
vAlign optionalVerticalAlignmentVertical alignment when using dock = Fill, or Left, Right.

Instance member LayoutChildren(controls, dock, spacing, useMargins, hAlign, vAlign)

Arranges all the child Control using the specified dock style, spaced by spacing pixels.

ParameterTypeDescription
controlsICollection<Control>List of child controls to arrange. If null, all the children will be arranged.
dockDockStyleIndicates whether to arrange the Controls horizontally or vertically.
spacing optionalInt32Spacing between the Controls.
useMargins optionalBooleanWhen true (default), it will also use the Margin to arrange the controls.
hAlign optionalHorizontalAlignmentHorizontal alignment when using dock = Fill, or Top, or Bottom.
vAlign optionalVerticalAlignmentVertical alignment when using dock = Fill, or Left, Right.

Instance member LayoutChildren(controls, dock, viewArea, spacing, useMargins, hAlign, vAlign)

Arranges all the child Control using the specified dock style, spaced by spacing pixels.

ParameterTypeDescription
controlsICollection<Control>List of child controls to arrange. If null, all the children will be arranged.
dockDockStyleIndicates whether to arrange the Controls horizontally or vertically.
viewAreaRectangleRectangle limiting the area to arrange the Controls in. If empty, it will use DisplayRectangle.
spacing optionalInt32Spacing between the Controls.
useMargins optionalBooleanWhen true (default), it will also use the Margin to arrange the controls.
hAlign optionalHorizontalAlignmentHorizontal alignment when using dock = Fill, or Top, or Bottom.
vAlign optionalVerticalAlignmentVertical alignment when using dock = Fill, or Left, Right.

Instance member LayoutChildren(direction, spacing, useMargins, hAlign, vAlign)

Arranges all the child Control in the specified direction , spaced by spacing pixels.

ParameterTypeDescription
directionOrientationIndicates whether to arrange the Controls horizontally or vertically.
spacing optionalInt32Spacing between the Controls.
useMargins optionalBooleanWhen true (default), it will also use the Margin to arrange the controls.
hAlign optionalHorizontalAlignmentHorizontal alignment when using direction = Vertical.
vAlign optionalVerticalAlignmentVertical alignment when using direction = Horizontal.

Instance member LayoutChildren(direction, viewArea, spacing, useMargins, hAlign, vAlign)

Arranges all the child Control in the specified direction , spaced by spacing pixels, and constrained within the specified viewArea .

ParameterTypeDescription
directionOrientationIndicates whether to arrange the Controls horizontally or vertically.
viewAreaRectangleRectangle limiting the area to arrange the Controls in. If empty, it will use DisplayRectangle.
spacing optionalInt32Spacing between the Controls.
useMargins optionalBooleanWhen true (default), it will also use the Margin to arrange the controls.
hAlign optionalHorizontalAlignmentHorizontal alignment when using direction = Vertical.
vAlign optionalVerticalAlignmentVertical alignment when using direction = Horizontal.

Instance member LayoutChildren(controls, direction, spacing, useMargins, hAlign, vAlign)

Arranges the specified child controls in the specified direction , spaced by spacing pixels.

ParameterTypeDescription
controlsICollection<Control>List of child controls to arrange. If null, all the children will be arranged.
directionOrientationIndicates whether to arrange the controls horizontally or vertically.
spacing optionalInt32Spacing between the controls .
useMargins optionalBooleanWhen true (default), it will also use the Margin to arrange the controls.
hAlign optionalHorizontalAlignmentHorizontal alignment when using direction = Vertical.
vAlign optionalVerticalAlignmentVertical alignment when using direction = Horizontal.

Throws:

Instance member LayoutChildren(controls, direction, viewArea, spacing, useMargins, hAlign, vAlign)

Arranges the specified child controls in the specified direction , spaced by spacing pixels, and constrained within the specified viewArea .

ParameterTypeDescription
controlsICollection<Control>List of child controls to arrange. If null, all the children will be arranged.
directionOrientationIndicates whether to arrange the controls horizontally or vertically.
viewAreaRectangleRectangle limiting the area to arrange the controls in. If empty, it will use DisplayRectangle.
spacing optionalInt32Spacing between the controls .
useMargins optionalBooleanWhen true (default), it will also use the Margin to arrange the controls.
hAlign optionalHorizontalAlignmentHorizontal alignment when using direction = Vertical.
vAlign optionalVerticalAlignmentVertical alignment when using direction = Horizontal.

Throws:

Protected member OnAddReferences(items)

Adds references components to the list. Referenced components can be added individually or as a reference to a collection.

ParameterTypeDescription
itemsIListContainer for the referenced components or collections.

Protected member OnAppear(e)

Fires the Appear event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

This is a "lazy" event. It fires only when there is an handler attached to it, otherwise the companion On{Name} protected method is not invoked.

It's enough to attach to either one of Appear or Disappear to enable both events.

Protected member OnAutoSizeChanged(e)

Raises the AutoSizeChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnBackColorChanged(e)

Fires the BackColorChanged event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnBackgroundImageChanged(e)

Fires the BackgroundImageChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnBackgroundImageLayoutChanged(e)

Fires the BackgroundImageLayoutChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnBecomingActiveControlChanged(e)

Raises the BecomingActiveControlChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnBindingContextChanged(e)

Fires the BindingContextChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnCausesValidationChanged(e)

Raises the CausesValidationChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnClick(e)

Fires the Click event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnClientSizeChanged(e)

Fires the ClientSizeChanged event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnContextMenuChanged(e)

Fires the ContextMenuChanged event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnControlAdded(e)

Fires the ControlAdded event.

ParameterTypeDescription
eControlEventArgsA ControlEventArgs that contains the event data.

Protected member OnControlCreated(e)

Fires the ControlCreated event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnControlRemoved(e)

Fires the ControlRemoved event.

ParameterTypeDescription
eControlEventArgsA ControlEventArgs that contains the event data.

Protected member OnCursorChanged(e)

Fires the CursorChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnDisappear(e)

Fires the Disappear event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

This is a "lazy" event. It fires only when there is an handler attached to it, otherwise the companion On{Name} protected method is not invoked.

It's enough to attach to either one of Appear or Disappear to enable both events.

Protected member OnDockChanged(e)

Fires the DockChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnDoubleClick(e)

Fires the DoubleClick event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnDragDrop(e)

Fires the DragDrop event.

ParameterTypeDescription
eDragEventArgsA DragEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnDragEnd(e)

Fires the DragEnd event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnDragEnter(e)

Fires the DragEnter event.

ParameterTypeDescription
eDragEventArgsA DragEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnDragLeave(e)

Fires the DragLeave event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnDragOver(e)

Fires the DragOver event.

ParameterTypeDescription
eDragEventArgsA DragEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnDragStart(e)

Fires the DragStart event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnEnabledChanged(e)

Fires the EnabledChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnEndMove(e)

Fires the EndMove event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnEndResize(e)

Fires the EndResize event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnEnter(e)

Fires the Enter event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnFontChanged(e)

Fires the FontChanged event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnForeColorChanged(e)

Fires the ForeColorChanged event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnGotFocus(e)

Fires the GotFocus event.

ParameterTypeDescription
eEventArgsA FocusEventArgs that contains the event data.

Protected member OnHelpRequested(e)

Fires the HelpRequested event.

ParameterTypeDescription
eHelpEventArgsAn HelpEventArgs that contains the event data.

Protected member OnImeModeChanged(e)

Fires the ImeModeChanged event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnKeyDown(e)

Fires the KeyDown event.

ParameterTypeDescription
eKeyEventArgsA KeyEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnKeyPress(e)

Fires the KeyPress event.

ParameterTypeDescription
eKeyPressEventArgsA KeyPressEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnKeyUp(e)

Fires the KeyUp event.

ParameterTypeDescription
eKeyEventArgsA KeyEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnLayout(e)

Fires the Layout event.

ParameterTypeDescription
eLayoutEventArgsA LayoutEventArgs that contains the event data.

Protected member OnLeave(e)

Fires the Leave event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnLocationChanged(e)

Fires the LocationChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnLongTap(e)

Fires the LongTap event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnLostFocus(e)

Fires the LostFocus event.

ParameterTypeDescription
eEventArgsA FocusEventArgs that contains the event data.

Protected member OnMarginChanged(e)

Fires the MarginChanged event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnMouseCaptureChanged(e)

Fires the MouseCaptureChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnMouseClick(e)

Fires the MouseClick event.

ParameterTypeDescription
eMouseEventArgsA MouseEventArgs that contains the event data.

Protected member OnMouseDoubleClick(e)

Fires the MouseDoubleClick event.

ParameterTypeDescription
eMouseEventArgsA MouseEventArgs that contains the event data.

Protected member OnMouseDown(e)

Fires the MouseDown event.

ParameterTypeDescription
eMouseEventArgsA MouseEventArgs that contains the event data.

Protected member OnMouseEnter(e)

Fires the MouseEnter event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnMouseHover(e)

Fires the MouseHover event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnMouseLeave(e)

Fires the MouseLeave event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnMouseMove(e)

Fires the MouseMove event.

ParameterTypeDescription
eMouseEventArgsA MouseEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnMouseUp(e)

Fires the MouseUp event.

ParameterTypeDescription
eMouseEventArgsA MouseEventArgs that contains the event data.

Protected member OnMouseWheel(e)

Fires the MouseWheel event.

ParameterTypeDescription
eMouseEventArgsA MouseEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnPaddingChanged(e)

Fires the PaddingChanged event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnParentBackColorChanged(e)

Fires the BackColorChanged event when the BackColor property value of the control's container changes.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnParentBackgroundImageChanged(e)

Fires the BackgroundImageChanged event when the BackgroundImage property value of the control's container changes.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnParentBindingContextChanged(e)

Fires the BindingContextChanged event when the BindingContext property value of the control's container changes.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnParentChanged(e)

Fires the ParentChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnParentCursorChanged(e)

Fires the CursorChanged event when the Cursor property of the control's container changes.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnParentEnabledChanged(e)

Fires the EnabledChanged event when the Enabled property value of the control's container changes.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnParentFontChanged(e)

Fires the FontChanged event when the Font property value of the control's container changes.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnParentForeColorChanged(e)

Fires the ForeColorChanged event when the ForeColor property value of the control's container changes.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnParentRightToLeftChanged(e)

Fires the RightToLeftChanged event when the RightToLeft property value of the control's container changes.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnParentVisibleChanged(e)

Fires the VisibleChanged event when the Visible property value of the control's container changes.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnPinch(e)

Fires the Pinch event.

ParameterTypeDescription
ePinchEventArgsAn instance of PinchEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnPreviewKeyDown(e)

Fires the PreviewKeyDown event.

ParameterTypeDescription
ePreviewKeyDownEventArgsA PreviewKeyDownEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnResize(e)

Fires the Resize event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnResponsiveProfileChanged(e)

Fires the ResponsiveProfileChanged event.

ParameterTypeDescription
eResponsiveProfileChangedEventArgsA ResponsiveProfileChangedEventArgs that contains the event data.

Protected member OnRightToLeftChanged(e)

Fires the RightToLeftChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnRotate(e)

Fires the Rotate event.

ParameterTypeDescription
eRotateEventArgsAn instance of RotateEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnSizeChanged(e)

Fires the SizeChanged event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnStartMove(e)

Fires the StartMove event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnStartResize(e)

Fires the StartResize event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnSwipe(e)

Fires the Swipe event.

ParameterTypeDescription
eSwipeEventArgsAn instance of SwipeEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnTabIndexChanged(e)

Fires the TabIndexChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnTabStopChanged(e)

Fires the TabStopChanged event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnTap(e)

Fires the Tap event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnTextChanged(e)

Fires the TextChanged event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnTouchCancel(e)

Fires the TouchCancel event.

ParameterTypeDescription
eTouchEventArgsAn instance of TouchEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnTouchEnd(e)

Fires the TouchEnd event.

ParameterTypeDescription
eTouchEventArgsAn instance of TouchEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnTouchMove(e)

Fires the TouchMove event.

ParameterTypeDescription
eTouchEventArgsAn instance of TouchEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnTouchStart(e)

Fires the TouchStart event.

ParameterTypeDescription
eTouchEventArgsAn instance of TouchEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnTrack(e)

Fires the Track event.

ParameterTypeDescription
eTrackEventArgsAn instance of TrackEventArgs that contains the event data.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Protected member OnValidated(e)

Fires the Validated event.

ParameterTypeDescription
eEventArgsAn EventArgs that contains the event data.

Protected member OnValidating(e)

Fires the Validating event.

ParameterTypeDescription
eCancelEventArgsA CancelEventArgs that contains the event data.

Protected member OnVisibleChanged(e)

Fires the VisibleChanged event.

ParameterTypeDescription
eEventArgsA EventArgs that contains the event data.

Protected member OnWebEvent(e)

Processes the event from the client.

ParameterTypeDescription
eWisejEventArgsEvent arguments.

Protected member OnWebPaint(g)

Allows the control to paint itself.

ParameterTypeDescription
gGraphics

Protected member OnWebRender(config)

Renders the client component.

ParameterTypeDescription
configObjectDynamic configuration object.

Protected member OnWebUpdate(state)

Updates the client component using the state information.

ParameterTypeDescription
stateObjectDynamic state object.

Protected member OnWidgetEvent(e)

Fires the WidgetEvent event.

ParameterTypeDescription
eWidgetEventArgsA WidgetEventArgs that contains the event data.

Instance member PerformLayout()

Forces the control to apply layout logic to all its child controls.

Instance member PerformLayout(affectedControl, affectedProperty)

Forces the control to apply layout logic to all its child controls.

ParameterTypeDescription
affectedControlControlA Control that represents the recently changed control.
affectedPropertyStringThe name of the recently changed property on the control that caused the layout to change.

Instance member PointToClient(point)

Computes the location of the specified screen point into client coordinates.

ParameterTypeDescription
pointPointThe screen coordinate Point to convert.

Returns: Point. A Point that represents the converted Point, point , in client coordinates.

Instance member PointToScreen(point)

Computes the location of the specified client point into screen coordinates.

ParameterTypeDescription
pointPointThe client coordinate Point to convert.

Returns: Point. A Point that represents the converted Point, point , in screen coordinates.

Protected member ProcessCmdKey(keyData)

Processes a command key.

ParameterTypeDescription
keyDataKeysOne of the Keys values that represents the key to process.

Returns: Boolean. true if the character was processed by the control; otherwise, false.

Protected member ProcessDialogChar(charCode)

Processes a dialog character.

ParameterTypeDescription
charCodeCharThe character to process.

Returns: Boolean. true if the character was processed by the control; otherwise, false.

Protected member ProcessDialogKey(keyData)

Processes a dialog key.

ParameterTypeDescription
keyDataKeysOne of the Keys values that represents the key to process.

Returns: Boolean. true if the key was processed by the control; otherwise, false.

Protected member ProcessKeyPreview(e)

Processes a key event before the KeyDown and KeyUp events.

ParameterTypeDescription
eWisejEventArgsA WisejEventArgs that contains the event data.

Returns: Boolean. true if the key event was processed by the control; otherwise, false.

Instance member RectangleToClient(rect)

Computes the size and location of the specified screen rectangle in client coordinates.

ParameterTypeDescription
rectRectangleThe screen coordinate Rectangle to convert.

Returns: Rectangle. A Rectangle that represents the converted Rectangle, rect , in client coordinates.

Instance member RectangleToScreen(rect)

Computes the size and location of the specified client rectangle in screen coordinates.

ParameterTypeDescription
rectRectangleThe client coordinate Rectangle to convert.

Returns: Rectangle. A Rectangle that represents the converted Rectangle, rect , in screen coordinates.

Instance member Refresh()

Forces the control to update corresponding client widget. When in DesignMode it forces a full redraw of the designer surface for this control, including the non-client areas such as the caption of forms or panels.

Instance member Refresh(refreshChildren)

Forces the control to update the corresponding client widget. When in DesignMode it forces a full redraw of the designer surface for this control and optionally of its children, including the non-client areas such as the caption of forms or panels.

ParameterTypeDescription
refreshChildrenBooleanTrue to also refresh all the children of this control.

Instance member RefreshOrUpdate(refreshChildren)

ParameterTypeDescription
refreshChildren optionalBoolean

Instance member RemoveClientEventListener(id)

Detaches and removes the listener identified by id .

ParameterTypeDescription
idInt32Id of the listener to remove.

Returns: Boolean. True if the id specified a valid lister and it was removed; otherwise false if id is invalid.

Instance member RemoveClientEventListener(name)

Removes all the listeners attached to the event name .

ParameterTypeDescription
nameStringName of the event.

Returns: Boolean. True if the event name has any listener that was removed.

Instance member RemoveCssClass(name)

Removes the specified css class name from the control's CssClass property.

ParameterTypeDescription
nameStringThe css class name to remove.

Returns: String. The new value of the CssClass property.

Instance member RemoveState(state)

Removes the specified theme state from the widget.

ParameterTypeDescription
stateStringName of the state to remove.

Returns: String[]. The new list of states stored in the States property.

You can also assign a new array of states to the States property.

Instance member RemoveState(state, forward)

Removes the specified theme state from the widget. Since 3.5.5

ParameterTypeDescription
stateStringName of the state to remove.
forwardBooleantrue to remove the state to the widget's child components.

Returns: String[]. The new list of states stored in the States property.

You can also assign a new array of states to the States property.

Instance member ResetBindings()

Removes all the data bindings from the control.

Returns: Control.

Protected member ResolveColor(color)

Resolves the named or themed color to an actual usable color value.

ParameterTypeDescription
colorColorThe color to resolve.

Returns: Color.

Instance member ResumeLayout()

Resumes layout logic.

Instance member ResumeLayout(performLayout)

Resumes layout logic, optionally forcing an immediate layout of all pending layout requests.

ParameterTypeDescription
performLayoutBooleantrue to apply all pending layout requests; otherwise, false.

Instance member ScrollControlIntoView(alignX, alignY)

Scrolls the control into view in the container using the specified alignX and alignY preferences.

ParameterTypeDescription
alignXHorizontalAlignmentIndicates the HorizontalAlignment preference. The final location of the control depends on the scrollable range and the available space. Note that Center will not scroll the control to the center, but will instead scroll it into the closest visible location with the minimum movement.
alignYVerticalAlignmentIndicates the VerticalAlignment preference. The final location of the control depends on the scrollable range and the available space. Note that Middle will not scroll the control to the middle, but will instead scroll it into the closest visible location with the minimum movement.

Returns: Control. this control

Instance member ScrollControlIntoView(alignX, alignY, behavior)

Scrolls the control into view in the container using the specified alignX and alignY preferences. Since 4.0.3

ParameterTypeDescription
alignXHorizontalAlignmentIndicates the HorizontalAlignment preference. The final location of the control depends on the scrollable range and the available space. Note that Center will not scroll the control to the center, but will instead scroll it into the closest visible location with the minimum movement.
alignYVerticalAlignmentIndicates the VerticalAlignment preference. The final location of the control depends on the scrollable range and the available space. Note that Middle will not scroll the control to the middle, but will instead scroll it into the closest visible location with the minimum movement.
behaviorScrollBehaviorDetermines whether scrolling is instant or animates smoothly.

Returns: Control. this control

Instance member ScrollControlIntoView()

Scrolls the child control into view.

Returns: Control. this control

Instance member ScrollControlIntoView(behavior)

Scrolls the child control into view. Since 4.0.3

ParameterTypeDescription
behaviorScrollBehaviorDetermines whether scrolling is instant or animates smoothly.

Returns: Control. this control

Instance member Select()

Activates, including setting the focus, a control.

Returns: Control.

Protected member Select(directed, forward)

Activates a child control. Optionally specifies the direction in the tab order to select the control from.

ParameterTypeDescription
directedBooleantrue to specify the direction of the control to select; otherwise, false.
forwardBooleantrue to move forward in the tab order; false to move backward in the tab order.

Returns: Control. this control

Instance member SelectNextControl(control, forward, tabStopOnly, nested, wrap)

Activates the next control in the list according to the specified selection rules.

ParameterTypeDescription
controlControlThe Control at which to start the search.
forwardBooleantrue to move forward in the tab order; false to move backward in the tab order.
tabStopOnlyBooleantrue to ignore the controls with the TabStop property set to false; otherwise, false.
nestedBooleantrue to include nested (children of child controls) child controls; otherwise, false.
wrapBooleantrue to continue searching from the first control in the tab order after the last control has been reached; otherwise, false.

Returns: Boolean. true if a control was activated; otherwise, false.

Instance member SendToBack()

Sends the control to the back of the z-order.

Returns: Control.

Protected member SetAutoSizeMode(mode)

Sets a value indicating how a control will behave when its AutoSize property is enabled.

ParameterTypeDescription
modeAutoSizeModeOne of the AutoSizeMode values.

Instance member SetBounds(x, y, width, height)

Sets the bounds of the control to the specified location and size.

ParameterTypeDescription
xInt32The new Left property value of the control.
yInt32The new Top property value of the control.
widthInt32The new Width property value of the control.
heightInt32The new Height property value of the control.

Returns: Control.

Instance member SetBounds(x, y, width, height, specified)

Sets the specified bounds of the control to the specified location and size.

ParameterTypeDescription
xInt32The new Left property value of the control.
yInt32The new Top property value of the control.
widthInt32The new Width property value of the control.
heightInt32The new Height property value of the control.
specifiedBoundsSpecifiedA bitwise combination of the BoundsSpecified values. For any parameter not specified, the current value will be used.

Returns: Control. this control

Protected member SetClientSizeCore(width, height)

Sets the client size of the control.

ParameterTypeDescription
widthInt32The client width, in pixels.
heightInt32The client height, in pixels.

Protected member SetTopLevel(value)

Sets the control as the top-level control.

ParameterTypeDescription
valueBooleantrue to set the control as the top-level control; otherwise, false.

Returns: Control.

Throws:

Protected member SetVisibleCore(value)

Sets the control to the specified visible state.

ParameterTypeDescription
valueBoolean

Instance member Show()

Displays the control to the user.

Returns: Control.

Protected member SizeFromClientSize(clientSize)

Converts the client size into the window size.

ParameterTypeDescription
clientSizeSize

Returns: Size.

Instance member SuspendLayout()

Suspends the layout logic for the control.

Instance member Update()

Causes the control to update the corresponding client side widget. When in design mode, causes the rendered control to update its entire surface in the designer.

Instance member ValidateActiveControl(allowFocusChange, checkCausesValidation)

Validates the current control.

ParameterTypeDescription
allowFocusChange by referenceBooleanSet to true if the validation fails but the container allows the focus to change when the value of AutoValidate is EnableAllowFocusChange .
checkCausesValidation optionalBooleanSet to true if validation should be performed only when the value of CausesValidation is true. The default is true.

Returns: Boolean. true if the active control is validated.

Instance member ValidateChildren()

Validates all selectable child controls in the container, including descendants. This is equivalent to calling ValidateChildren(ValidationConstraints.Selectable). See Selectable for details of exactly which child controls will be validated.

Returns: Boolean. true if all of the children validated successfully; otherwise, false. If called from the Validating or Validated event handlers, this method will always return false.

Instance member ValidateChildren(flags)

Validates all the child controls in the container. Exactly which controls are validated and which controls are skipped is determined by flags .

ParameterTypeDescription
flagsValidationConstraints

Returns: Boolean. true if all of the children validated successfully; otherwise, false. If called from the Validating or Validated event handlers, this method will always return false.

Events

Instance member Appear

EventHandler Fired after the control has been fully rendered on the client.

This is a "lazy" event. It fires only when there is an handler attached to it, otherwise the companion On{Name} protected method is not invoked.

It's enough to attach to either one of Appear or Disappear to enable both events.

Instance member AutoSizeChanged

EventHandler Fired when the AutoSize property value changes.

Instance member BackColorChanged

EventHandler Fired when the value of the BackColor property changes.

Instance member BackgroundImageChanged

EventHandler Fired when the value of the BackgroundImage property changes.

Instance member BackgroundImageLayoutChanged

EventHandler Fired when the BackgroundImageLayout property changes.

Instance member BecomingActiveControlChanged

EventHandler Fired when the value of the BecomingActiveControl property changes.

Instance member BindingContextChanged

EventHandler Occurs when the value of the BindingContext property changes.

Instance member CausesValidationChanged

EventHandler Fired when the value of the CausesValidation property changes.

Instance member Click

EventHandler Fired when the control is clicked.

Instance member ClientSizeChanged

EventHandler Fired when the ClientSize property value changes.

Instance member ContextMenuChanged

EventHandler Fired when the value of the ContextMenu property changes.

Instance member ControlAdded

ControlEventHandler Fired when a new control is added to the ControlCollection.

Instance member ControlCreated

EventHandler Fired when a control is made visible the first time, fully created and sent to the client.

Instance member ControlRemoved

ControlEventHandler Fired when a control is removed from the ControlCollection.

Instance member CursorChanged

EventHandler Fired when the value of the Cursor property changes.

Instance member Disappear

EventHandler Fired after the control is no longer visible on the client.

This is a "lazy" event. It fires only when there is an handler attached to it, otherwise the companion On{Name} protected method is not invoked.

It's enough to attach to either one of Appear or Disappear to enable both events.

Instance member Disposed

EventHandler Fired when the component is disposed.

Instance member DockChanged

EventHandler Fired when the value of the Dock property changes.

Instance member DoubleClick

EventHandler Fired when the control is double-clicked.

Instance member DragDrop

DragEventHandler Fired when a drag-and-drop operation is completed.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member DragEnd

EventHandler Fired when a drag-drop operation is terminated either by a drop or canceled.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member DragEnter

DragEventHandler Fired when an object is dragged into the control's bounds.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member DragLeave

EventHandler Fired when an object is dragged out of the control's bounds.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member DragOver

DragEventHandler Fired when an object is dragged over the control's bounds.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member DragStart

EventHandler Fired when a drag-drop operation is started by the user.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member EnabledChanged

EventHandler Fired when the Enabled property value has changed.

Instance member EndMove

EventHandler Fired when a control is Movable and the user ends the move operation.

This event fires only when Movable is true and the user moves the widget on the client. It doesn't fire when the Location property changes.

Instance member EndResize

EventHandler Fired when a control has ResizableEdges and the user ends the resize operation.

This event fires only when the ResizableEdges has a value different than None and the user resizes the widget on the client. It doesn't fire when the Size of the control changes.

Instance member Enter

EventHandler Fired when the control gains the input focus.

Instance member FontChanged

EventHandler Fired when the Font property value changes.

Instance member ForeColorChanged

EventHandler Fired when the ForeColor property value changes.

Instance member GotFocus

EventHandler Fired when the control gains the focus.

Staring from version 3.5.18, the event parameter e is of type FocusEventArgs which carries additional information about the control that lost the focus and the one that received the focus. To use the new data check the type and cast to FocusEventArgs.

Instance member HelpRequested

HelpEventHandler Fired when the user requests help for a control by pressing F1.

Instance member ImeModeChanged

EventHandler Fired when the ImeMode property has changed.

Instance member KeyDown

KeyEventHandler Fired when a key is pressed while the control has focus.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member KeyPress

KeyPressEventHandler Fired when a key is pressed while the control has focus.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member KeyUp

KeyEventHandler Fired when a key is released while the control has focus.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member Layout

LayoutEventHandler Fired when a control should reposition its child controls.

Instance member Leave

EventHandler Fired when the control loses the input focus.

Instance member LocationChanged

EventHandler Fired when the Location property value has changed.

Instance member LongTap

EventHandler Fired when a pointer holds on the screen.

Instance member LostFocus

EventHandler Fired when the control loses focus.

Staring from version 3.5.18, the event parameter e is of type FocusEventArgs which carries additional information about the control that lost the focus and the one that received the focus. To use the new data check the type and cast to FocusEventArgs.

Instance member MarginChanged

EventHandler Fired when the control's margin changes.

Instance member MouseCaptureChanged

EventHandler Fired when the control loses mouse capture.

Instance member MouseClick

MouseEventHandler Fired when the control is clicked by the mouse.

Instance member MouseDoubleClick

MouseEventHandler Fired when the control is double clicked by the mouse.

Instance member MouseDown

MouseEventHandler Fired when the mouse pointer is over the control and a mouse button is pressed.

Instance member MouseEnter

EventHandler Fired when the mouse pointer enters the control.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member MouseHover

EventHandler Fired when the mouse pointer rests on the control.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member MouseLeave

EventHandler Fired when the mouse pointer leaves the control.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member MouseMove

MouseEventHandler Fired when the mouse pointer is moved over the control.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member MouseUp

MouseEventHandler Fired when the mouse pointer is over the control and a mouse button is released.

Instance member MouseWheel

MouseEventHandler Fired when the mouse wheel moves while the control has focus.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member PaddingChanged

EventHandler Fired when the control's padding changes.

Instance member Paint

PaintEventHandler Fired when a UserPaint control needs to redraw itself.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member ParentChanged

EventHandler Fired when the Parent property value changes.

Instance member Pinch

PinchEventHandler Fired when two finger moved towards or away from each other. It contains the scaling factor of the pinch.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member PreviewKeyDown

PreviewKeyDownEventHandler Fired before the KeyDown event when a key is pressed while focus is on this control.

Instance member QueryContinueDrag

QueryContinueDragEventHandler Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member Resize

EventHandler Fired when the control is resized.

Instance member ResponsiveProfileChanged

ResponsiveProfileChangedEventHandler Fired when the active responsive profile is changed.

Instance member RightToLeftChanged

EventHandler Fired when the RightToLeft property value changes.

Instance member Rotate

RotateEventHandler Fired when two finger moved around a single point. It contains the angle of the rotation.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member SizeChanged

EventHandler Fired when the Size property value changes.

Instance member StartMove

EventHandler Fired when a control is Movable and the user begins the move operation.

This event fires only when Movable is true and the user begins moving the widget on the client.

Instance member StartResize

EventHandler Fired when a control has ResizableEdges and the user begins the resize operation.

This event fires only when the ResizableEdges has a value different than None and the user begins resizing the widget on the client.

Instance member StyleChanged

EventHandler Fired when the control style changed.

Instance member Swipe

SwipeEventHandler Fired when a pointer swipes over the screen.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member TabIndexChanged

EventHandler Fired when the TabIndex property value has changed.

Instance member TabStopChanged

EventHandler Fired when the value of the TabStop property changes.

Instance member Tap

EventHandler Fired when a pointer taps on the screen.

Instance member TextChanged

EventHandler Fired when the Text property value changes.

Instance member TouchCancel

TouchEventHandler Fired when a touch point has been disrupted in an implementation-specific manner (for example, too many touch points are created).

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member TouchEnd

TouchEventHandler Fired when a touch point is removed from the touch surface.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member TouchMove

TouchEventHandler Fired when a touch point is moved along the touch surface.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member TouchStart

TouchEventHandler Fired when a touch point is placed on the touch surface.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member Track

TrackEventHandler Fired when a pointer grabs an item and moves the pointer on it.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Instance member Validated

EventHandler Fired when the control is finished validating.

Instance member Validating

CancelEventHandler Fired when the control is validating.

Instance member VisibleChanged

EventHandler Fired when the Visible property value changes.

Instance member WidgetEvent

WidgetEventHandler Fired when the control receives a custom event from the client.

JavaScript code can fire any event back to a control, including custom data, using:


this.fireWidgetEvent("myevent", {x:1, y:2, name:'test'});

On the server side, the event name and event data are available in the WidgetEvent handler:



private void control_WidgetEvent(object sender, WidgetEventArgs e) {

switch (e.Type) {

case "myevent":
var data = e.Data;
Alert.Show($"x={data.x}, y={data.y}, name={data.name}");
break;
}
}

Inherited By

NameDescription
TableLayoutPanelRepresents a panel that dynamically lays out its contents in a grid composed of rows and columns.
FileDialogUIUI implementation for the FileDialog class.
FolderBrowserDialogUIUI implementation for the FolderDialog class.
BindingNavigatorRepresents the navigation and manipulation user interface (UI) for controls that are bound to a data source.
ButtonRepresents a button control.
ButtonBaseImplements the basic functionality common to button controls.
CheckBoxRepresents a check box control.
CheckedListBoxDisplays a ListBox in which a check box is displayed to the left of each item.
ComboBoxRepresents a combo box control.
ContainerControlProvides focus-management functionality for controls that can function as a container for other controls.
DateTimePickerRepresents a control that allows the user to select or type a date and a time.
DomainUpDownRepresents a spinner control that displays string values.
FlowLayoutPanelRepresents a panel that dynamically arranges its controls horizontally or vertically in automatic rows or columns.
FormRepresents a window or dialog box that makes up an application's user interface.
GroupBoxRepresents a Wisej control that displays a frame around a group of controls with an optional caption.
LabelRepresents a label control.
LinkLabelRepresents an hyper-link control.
ListBoxRepresents a control to display a list of items.
ListControlProvides a common implementation of members for the ListBox and ComboBox classes.
MaskedTextBoxUses a mask to distinguish between proper and improper user input.
MdiClientRepresents the container for multiple-document interface (MDI) child forms.
MonthCalendarRepresents a control that enables the user to select a date using a visual monthly calendar display.
NumericUpDownRepresents a spinner control that displays numeric values.
PageRepresents 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.
PanelRepresents a collapsible panel with an optional header that contains a group of controls.
PictureBoxRepresents an image control.
ProgressBarRepresents a progress control that displays a value visually as a filled bar.
RadioButtonEnables the user to select a single option from a group of choices when paired with other RadioButton controls.
ScrollableControlDefines a base class for controls that support auto-scrolling behavior.
HScrollBarRepresents an horizontal scroll bar.
VScrollBarRepresents a vertical scroll bar.
ScrollBarImplements the basic functionality of a scroll bar control.
SplitContainerRepresents a control consisting of a movable bar that divides a container's display area into two resizable panels.
SplitterPanelCreates a panel that is associated with a SplitContainer.
TabControlManages a related set of TabPage pages.
TabPageRepresents a single tab page in a TabControl.
TextBoxRepresents a text box control that allows the user to enter any value.
TextBoxBaseImplements the basic functionality required by text controls.
TrackBarEnables the user to choose between a range of values by sliding a small bar along another bar.
UpDownBaseImplements the basic functionality required by a spin box (also known as an up-down control).
UserControlProvides an empty control that can be used to create other controls.
WebBrowserRepresents a web browser control that enables the user to navigate web pages inside a form or a page.
DataGridViewComboBoxEditingControlRepresents a ComboBox control that can be hosted in a DataGridViewComboBoxCell.
DataGridViewDateTimePickerEditingControlRepresents a DateTimePicker control that can be hosted in a DataGridViewDateTimePickerCell.
DataGridViewMaskedTextBoxEditingControlRepresents a MaskedTextBox control that can be hosted in a DataGridViewMaskedTextBoxCell cell.
DataGridViewNumericUpDownEditingControlRepresents a NumericUpDown control that can be hosted in a DataGridViewNumericUpDownCell.
DataGridViewTextBoxEditingControlRepresents a TextBox control that can be hosted in a DataGridViewTextBoxCell cell when the cell's WrapMode is set to False.
DataGridViewRepresents a data grid control.
DataRepeaterDisplays data in a customizable list format.
DataRepeaterItemUsed by the DataRepeater control to display data at run time.
DesktopRepresents a desktop container that can host floating windows.
AccordionDisplays collapsible set of AccordionPanel panels for presenting information in a limited amount of space.
AccordionPanelRepresents a panel in a Accordion control.
AspNetPanelRepresents a control that can host ASP.NET or MVC pages within a Wisej application.
CanvasRepresents a drawing surface for immediate-mode 2D rendering, similar to the HTML5 Canvas API.
FlashPlayerRepresents a FlashPlayer control that can display flash applications.
FlexLayoutPanelRepresents a panel that dynamically arranges its child controls.
HtmlPanelRepresents a control that displays any HTML file and a corresponding CSS style sheet as embedded HTML.
IFramePanelRepresents a control that displays any HTML file in an IFrame element.
LineRepresents a line control.
ListViewComboBoxThe TreeViewComboBox control represents a UserComboBox control with a ListView as the drop down panel.
MediaBase implementation for media controls.
VideoRepresents a Video control that displays a video file.
AudioRepresents a Audio control that plays an audio file.
PdfViewerRepresents a PdfViewer control that can display a pdf document in the browser either using the native pdf viewer, the pdf.js viewer, Google docs, or a custom viewer.
ShapeRepresents a shape control. Displays an element a border in any of the four sides.
SlideBarDisplays child controls vertically or horizontally in a scrollable container.
SpacerRepresents a spacer control. It can be used to add a space between controls in a layout panel. It is not rendered on the client.
SplitButtonRepresents a split button control.
TagTextBoxRepresents a data field that displays a list of selectable and removable tags. The control recognizes tags as the user types and adds in front of the editable field.
TimeUpDownRepresents a spinner control that displays TimeSpan values.
TreeViewComboBoxThe TreeViewComboBox control represents a UserComboBox control with a TreeView as the drop down panel.
TypedTextBoxRepresents a text box control that allows the user to enter a typed value.
UploadRepresent an upload widget. Allows users to selected one or more files and upload them to the server.
UserComboBoxThe UserComboBox control represents a ComboBox control with a custom panel that drops down when the user clicks the down arrow.
UserPopupProvides an popup container that can be attached to other controls.
WidgetProvides a generic widget that can use most third party javascript widgets.
ListViewRepresents a list view control, which displays a collection of items that can be displayed using one of four different views.
MenuBarRepresents a menu bar component.
PropertyGridProvides a user interface for browsing the properties of an object.
StatusBarDisplays information to the user in a about the object being viewed, the object's components, or the object's operation.
ToolBarRepresents a toolbar component.
TreeViewDisplays a hierarchical collection of labeled items, each represented by a TreeNode.

Implements

NameDescription
IUserDataProvides access to the UserData and Tag properties associated to the component implementing this interface.
IBindableComponentBindable components implement this interface.
IDropTargetControls that support drag & drop operations implement this interface.
IWisejComponentAll wisej components implement this interface.
IWisejControlAll wisej controls derived from the Control class must implement this interface.
IWisejSerializableAllows an object to serialize itself.