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.
|
|
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.
|
|
Layout ( |
Perform a layout of the elements.
|
|
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.
|
|
ViewComposite ( ) : System |
Initialize a new instance of the ViewComposite 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 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 Layout ( |
||
context | Layout context. | |
return | void |
public Remove ( ViewBase item ) : bool | ||
item | ViewBase | ViewBase reference. |
return | bool |
public Render ( |
||
context | Rendering context. | |
return | void |
public ViewFromPoint ( Point pt ) : ViewBase | ||
pt | Point | Point in view coordinates. |
return | ViewBase |