Class DependencyObjectExtensions
Represents an extension to find parent of an element.
Inheritance
System.Object
DependencyObjectExtensions
Namespace: Syncfusion.UI.Xaml.BulletGraph
Assembly: Syncfusion.SfBulletGraph.UWP.dll
Syntax
public static class DependencyObjectExtensions : Object
Methods
FindElementOfType<T>(FrameworkElement)
Searches the sub tree of an element (including that element) for an element of a particular type.
Declaration
public static T FindElementOfType<T>(this FrameworkElement element)
where T : FrameworkElement
Parameters
Type | Name | Description |
---|---|---|
Windows.UI.Xaml.FrameworkElement | element |
Returns
Type |
---|
T |
Type Parameters
Name |
---|
T |
FindParentElementOfType<T>(FrameworkElement)
Find the parent of the given element type.
Declaration
public static T FindParentElementOfType<T>(this FrameworkElement element)
where T : class
Parameters
Type | Name | Description |
---|---|---|
Windows.UI.Xaml.FrameworkElement | element | The element. |
Returns
Type | Description |
---|---|
T | The parent. |
Type Parameters
Name | Description |
---|---|
T | The type class. |