Method | Description | |
---|---|---|
GetBoundsRelativeTo ( this element, UIElement otherElement ) : Rect? |
Get the bounds of an element relative to another element.
|
|
GetVisualAncestors ( this element ) : IEnumerable |
Get the visual tree ancestors of an element.
|
|
GetVisualAncestorsAndSelf ( this element ) : IEnumerable |
Get the visual tree ancestors of an element and the element itself.
|
|
GetVisualChildren ( this element ) : IEnumerable |
Get the visual tree children of an element.
|
|
GetVisualChildrenAndSelf ( this element ) : IEnumerable |
Get the visual tree children of an element and the element itself.
|
|
GetVisualDescendants ( this element ) : IEnumerable |
Get the visual tree descendants of an element.
|
|
GetVisualDescendantsAndSelf ( this element ) : IEnumerable |
Get the visual tree descendants of an element and the element itself.
|
|
GetVisualSiblings ( this element ) : IEnumerable |
Get the visual tree siblings of an element.
|
|
GetVisualSiblingsAndSelf ( this element ) : IEnumerable |
Get the visual tree siblings of an element and the element itself.
|
|
InvokeOnLayoutUpdated ( this element, System.Action action ) : void |
Perform an action when the element's LayoutUpdated event fires.
|
Method | Description | |
---|---|---|
GetLogicalChildren ( this parent ) : IEnumerable |
Retrieves all the logical children of a framework element using a breadth-first search. For performance reasons this method manually manages the stack instead of using recursion.
|
|
GetLogicalDescendents ( this parent ) : IEnumerable |
Retrieves all the logical descendents of a framework element using a breadth-first search. For performance reasons this method manually manages the stack instead of using recursion.
|
|
GetVisualAncestorsAndSelfIterator ( |
Get the visual tree ancestors of an element and the element itself.
|
|
GetVisualChildrenAndSelfIterator ( this element ) : IEnumerable |
Get the visual tree children of an element and the element itself.
|
|
GetVisualDescendantsAndSelfIterator ( |
Get the visual tree descendants of an element and the element itself.
|
public static GetBoundsRelativeTo ( this element, UIElement otherElement ) : Rect? | ||
element | this | The element. |
otherElement | UIElement | /// The element relative to the other element. /// |
return | Rect? |
public static GetVisualAncestors ( this element ) : IEnumerable |
||
element | this | The element. |
return | IEnumerable |
public static GetVisualAncestorsAndSelf ( this element ) : IEnumerable |
||
element | this | The element. |
return | IEnumerable |
public static GetVisualChildren ( this element ) : IEnumerable |
||
element | this | The element. |
return | IEnumerable |
public static GetVisualChildrenAndSelf ( this element ) : IEnumerable |
||
element | this | The element. |
return | IEnumerable |
public static GetVisualDescendants ( this element ) : IEnumerable |
||
element | this | The element. |
return | IEnumerable |
public static GetVisualDescendantsAndSelf ( this element ) : IEnumerable |
||
element | this | The element. |
return | IEnumerable |
public static GetVisualSiblings ( this element ) : IEnumerable |
||
element | this | The element. |
return | IEnumerable |
public static GetVisualSiblingsAndSelf ( this element ) : IEnumerable |
||
element | this | The element. |
return | IEnumerable |
public static InvokeOnLayoutUpdated ( this element, System.Action action ) : void | ||
element | this | The element. |
action | System.Action | The action to perform. |
return | void |