Method | Description | |
---|---|---|
Add ( ViewBase item ) : void |
Append a view to the collection.
|
|
Clear ( ) : void |
Remove all views from the collection.
|
|
ClearFixedState ( ) : void |
Clear down the use of the fixed state
|
|
Contains ( ViewBase item ) : bool |
Determines whether the collection contains the view.
|
|
ContainsRecurse ( ViewBase item ) : bool |
Determines whether any part of the view hierarchy is the specified view.
|
|
CopyTo ( ViewBase array, int arrayIndex ) : void |
Copies views to specified array starting at particular index.
|
|
EvalTransparentPaint ( |
Evaluate the need for drawing transparent areas.
|
|
GetEnumerator ( ) : IEnumerator |
Shallow enumerate forward over children of the element.
|
|
GetPreferredSize ( |
Discover the preferred size of the element.
|
|
GotFocus ( |
Source control has got the focus.
|
|
IndexOf ( ViewBase item ) : int |
Determines the index of the specified view in the collection.
|
|
Insert ( int index, ViewBase item ) : void |
Inserts a view to the collection at the specified index.
|
|
KeyDown ( |
Key has been pressed down.
|
|
KeyPress ( |
Key has been pressed.
|
|
KeyUp ( |
Key has been released.
|
|
Layout ( |
Perform a layout of the elements.
|
|
LostFocus ( |
Source control has lost the focus.
|
|
MouseDown ( Point pt, MouseButtons button ) : bool |
Mouse button has been pressed in the view.
|
|
MouseEnter ( ) : void |
Mouse has entered the view.
|
|
MouseLeave ( ViewBase next ) : void |
Mouse has left the view.
|
|
MouseMove ( Point pt ) : void |
Mouse has moved inside the view.
|
|
MouseUp ( Point pt, MouseButtons button ) : void |
Mouse button has been released in the view.
|
|
Recurse ( ) : IEnumerable |
Deep enumerate forward over children of the element.
|
|
Remove ( ViewBase item ) : bool |
Removes first occurance of specified view.
|
|
RemoveAt ( int index ) : void |
Removes the view at the specified index.
|
|
Render ( |
Perform a render of the elements.
|
|
Reverse ( ) : IEnumerable |
Shallow enumerate backwards over children of the element.
|
|
ReverseRecurse ( ) : IEnumerable |
Deep enumerate backwards over children of the element.
|
|
ToString ( ) : string |
Obtains the String representation of this instance.
|
|
ViewFromPoint ( Point pt ) : ViewBase |
Find the view that contains the specified point.
|
|
this ( int index ) : ViewBase |
Gets or sets the view at the specified index.
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Release unmanaged and optionally managed resources.
|
|
ViewDecorator ( ViewBase child ) : System |
Initialize a new instance of the ViewBase class.
|
public Add ( ViewBase item ) : void | ||
item | ViewBase | ViewBase reference. |
return | void |
public Contains ( ViewBase item ) : bool | ||
item | ViewBase | ViewBase reference. |
return | bool |
public ContainsRecurse ( ViewBase item ) : bool | ||
item | ViewBase | ViewBase reference. |
return | bool |
public CopyTo ( ViewBase array, int arrayIndex ) : void | ||
array | ViewBase | Target array. |
arrayIndex | int | Starting array index. |
return | void |
protected Dispose ( bool disposing ) : void | ||
disposing | bool | Called from Dispose method. |
return | void |
public EvalTransparentPaint ( |
||
context | Evaluation context. | |
return | bool |
public GetPreferredSize ( |
||
context | Layout context. | |
return |
public GotFocus ( |
||
c | Reference to the source control instance. | |
return | void |
public IndexOf ( ViewBase item ) : int | ||
item | ViewBase | ViewBase reference. |
return | int |
public Insert ( int index, ViewBase item ) : void | ||
index | int | Insert index. |
item | ViewBase | ViewBase reference. |
return | void |
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 | bool |
public Layout ( |
||
context | Layout context. | |
return | void |
public LostFocus ( |
||
c | Reference to the source control instance. | |
return | void |
public MouseDown ( Point pt, MouseButtons button ) : bool | ||
pt | Point | Mouse position relative to control. |
button | MouseButtons | Mouse button pressed down. |
return | bool |
public MouseLeave ( ViewBase next ) : void | ||
next | ViewBase | Reference to view that is next to have the mouse. |
return | void |
public MouseMove ( Point pt ) : void | ||
pt | Point | Mouse position relative to control. |
return | void |
public MouseUp ( Point pt, MouseButtons button ) : void | ||
pt | Point | Mouse position relative to control. |
button | MouseButtons | Mouse button released. |
return | void |
public Remove ( ViewBase item ) : bool | ||
item | ViewBase | ViewBase reference. |
return | bool |
public Render ( |
||
context | Rendering context. | |
return | void |
protected ViewDecorator ( ViewBase child ) : System | ||
child | ViewBase | |
return | System |
public ViewFromPoint ( Point pt ) : ViewBase | ||
pt | Point | Point in view coordinates. |
return | ViewBase |