Method | Description | |
---|---|---|
Attach ( |
Attach the view manager to provided control and root element.
|
|
ComponentFromPoint ( Point pt ) : |
Is the provided point associated with a component.
|
|
Dispose ( ) : void |
Clean up any resources.
|
|
DoubleClick ( Point pt ) : void |
Perform double click processing.
|
|
EvalTransparentPaint ( IRenderer renderer ) : bool |
Perform a layout of the view.
|
|
GetPreferredSize ( IRenderer renderer, |
Discover the preferred size of the view.
|
|
GotFocus ( ) : void |
Perform got focus handling.
|
|
KeyDown ( |
Perform key down handling.
|
|
KeyPress ( |
Perform key press handling.
|
|
KeyUp ( |
Perform key up handling.
|
|
Layout ( IRenderer renderer ) : void |
Perform a layout of the view.
|
|
Layout ( |
Perform a layout of the view.
|
|
LostFocus ( ) : void |
Perform lost focus handling.
|
|
MouseDown ( MouseEventArgs e, Point rawPt ) : void |
Perform mouse down processing.
|
|
MouseLeave ( |
Perform mouse leave processing.
|
|
MouseMove ( MouseEventArgs e, Point rawPt ) : void |
Perform mouse movement handling.
|
|
MouseUp ( MouseEventArgs e, Point rawPt ) : void |
Perform mouse up processing.
|
|
Paint ( IRenderer renderer, PaintEventArgs e ) : void |
Perform a paint of the view.
|
|
Paint ( |
Perform a paint of the view.
|
|
PerformMouseDownProcessed ( MouseEventArgs e ) : void |
Raises the MouseDownProcessed event.
|
|
PerformMouseUpProcessed ( MouseEventArgs e ) : void |
Raises the MouseUpProcessed event.
|
|
ResetCounters ( ) : void |
Reset the internal counters.
|
|
ViewManager ( ) : System |
Initialize a new instance of the ViewManager class.
|
|
ViewManager ( |
Initialize a new instance of the ViewManager class.
|
Method | Description | |
---|---|---|
UpdateViewFromPoint ( |
Update the active view based on the mouse position.
|
public Attach ( |
||
control | Owning control. | |
root | ViewBase | Root of the view hierarchy. |
return | void |
public ComponentFromPoint ( Point pt ) : |
||
pt | Point | Mouse point. |
return |
public DoubleClick ( Point pt ) : void | ||
pt | Point | Control coordinates point. |
return | void |
public EvalTransparentPaint ( IRenderer renderer ) : bool | ||
renderer | IRenderer | Renderer provider. |
return | bool |
public GetPreferredSize ( IRenderer renderer, |
||
renderer | IRenderer | Renderer provider. |
proposedSize | The custom-sized area for a control. | |
return |
public KeyDown ( |
||
e | A KeyEventArgs that contains the event data. | |
return | void |
public KeyPress ( |
||
e | A KeyPressEventArgs that contains the event data. | |
return | void |
public KeyUp ( |
||
e | A KeyEventArgs that contains the event data. | |
return | void |
public Layout ( IRenderer renderer ) : void | ||
renderer | IRenderer | Renderer provider. |
return | void |
public Layout ( |
||
context | View context for layout operation. | |
return | void |
public MouseDown ( MouseEventArgs e, Point rawPt ) : void | ||
e | MouseEventArgs | A MouseEventArgs that contains the event data. |
rawPt | Point | The actual point provided from the windows message. |
return | void |
public MouseLeave ( |
||
e | An EventArgs that contains the event data. | |
return | void |
public MouseMove ( MouseEventArgs e, Point rawPt ) : void | ||
e | MouseEventArgs | A MouseEventArgs that contains the event data. |
rawPt | Point | The actual point provided from the windows message. |
return | void |
public MouseUp ( MouseEventArgs e, Point rawPt ) : void | ||
e | MouseEventArgs | A MouseEventArgs that contains the event data. |
rawPt | Point | The actual point provided from the windows message. |
return | void |
public Paint ( IRenderer renderer, PaintEventArgs e ) : void | ||
renderer | IRenderer | Renderer provider. |
e | PaintEventArgs | A PaintEventArgs that contains the event data. |
return | void |
public Paint ( |
||
context | Renderer context. | |
return | void |
public PerformMouseDownProcessed ( MouseEventArgs e ) : void | ||
e | MouseEventArgs | A MouseEventArgs containing the event data. |
return | void |
public PerformMouseUpProcessed ( MouseEventArgs e ) : void | ||
e | MouseEventArgs | A MouseEventArgs containing the event data. |
return | void |
protected UpdateViewFromPoint ( |
||
control | Source control. | |
pt | Point | Point within the source control. |
return | void |
public ViewManager ( |
||
control | Owning control. | |
root | ViewBase | Root of the view hierarchy. |
return | System |