Table of Contents

Class jUserControlBase

Namespace
ComfileTech.jControls
Assembly
ComfileTech.jControls.dll

Base class to aggregate features for jUserControl.

[Browsable(false)]
[Mixin(typeof(jControlImplementation))]
[Mixin(typeof(jControlCreateParamsImplementation))]
[Mixin(typeof(SuspendDrawImplementation))]
[Mixin(typeof(ISupportInitializeImplementation))]
[Mixin(typeof(jControlDrawingImplementation))]
[Mixin(typeof(RootControlImplementation))]
public class jUserControlBase : UserControl, ISynchronizeInvoke, IWin32Window, IBindableComponent, IDropTarget, IComponent, IDisposable, IContainerControl, ISupportInitialize, IjControl
Inheritance
UserControl
jUserControlBase
Implements
Derived

Constructors

jUserControlBase()

Instantiates an instance of this class with default values.

Properties

Border

The border around the perimeter of the control.

CornerRadii

The radii for rounding each of the 4 corners of the control.

CreateParams

Gets the required creation parameters when the control handle is created.

DefaultSize
DisableDoubleClick

Disables the double-click event so two consecutive clicks/touches will result in the Click event firing twice instead of one Click event and one Doubleclick event.

DoubleBuffered

Gets or sets a value indicating whether this control should redraw its surface using a secondary buffer to reduce or prevent flicker.

DropShadow

The appearance of the drop shadow effect.

Fill

The interior fill of the control.

IsSelectable

Gets or sets whether or not this control is Selectable.

Text

Gets or sets the text associated with this control.

Methods

OnDoubleClick(EventArgs)
ResumeDraw()

Resumes drawing to the control's back buffer. This method will decrement a count (that was incremented by a call to SuspendDraw) until it reaches 0, at which time drawing will be immediately initiated.

SuspendDraw()

Suspends drawing to the control's back buffer. This method will increment a count each time it is called. When the count is brought back down to 0 with calls to ResumeDraw, drawing will be immediately initiated.

WndProc(ref Message)

Processes Windows messages.