Class DependencyObjectExtensions
Represents an extension to find parent of an element.
Inheritance
System.Object
DependencyObjectExtensions
Assembly: Syncfusion.SfSchedule.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 Parameters
FindParentElementOfType<T>(FrameworkElement)
Finds a specific parent element from visual tree by using element type.
Declaration
public static T FindParentElementOfType<T>(this FrameworkElement element)
where T : class
Parameters
Type |
Name |
Description |
Windows.UI.Xaml.FrameworkElement |
element |
|
Returns
Type Parameters