Click or drag to resize

UIHelper class

Provides static routines for searching the VisualTree and the LogicalTree.
Inheritance hierarchy
SystemObject
  Vishnu.ViewModelUIHelper

Namespace: Vishnu.ViewModel
Assembly: Vishnu.ViewModel (in Vishnu.ViewModel.dll) Version: 1.0.0+df0404e911d6c38eaed3bb1bb1acfc482d417643
Syntax
public static class UIHelper

The UIHelper Type exposes the following members.

Methods
 NameDescription of the
Public MethodStatic MemberFindFirstLogicalChildOfTypeT Searches in the LogicalTree of the FrameworkElement element after the first child element of type T.
Public MethodStatic MemberFindFirstLogicalChildOfTypeAndNameT Searches in the LogicalTree of the FrameworkElement element after the first child element of type T.
Public MethodStatic MemberFindFirstVisualChildOfTypeT Searches in the VisualTree of the FrameworkElement element after the first child element of type T.
Public MethodStatic MemberFindFirstVisualChildOfTypeAfterVisualChildOfTypeAndNameT, U Searches in the VisualTree of the FrameworkElement element for the first child element of type T, which follows a child element of type 'predecessorType' with the name 'predecessorName'.
Public MethodStatic MemberFindFirstVisualChildOfTypeAndNameT Searches in the VisualTree of the FrameworkElement element after the first child element of type T with name == name.
Public MethodStatic MemberFindFirstVisualParentOfTypeT Searches in the VisualTree of the FrameworkElement element upwards after the first parent element of type T.
Public MethodStatic MemberFindFirstVisualParentOfTypeAndNameT Searches in the VisualTree from the FrameworkElement element upwards after the first parent element of type T with name == name.
Back to the top
Remarks
Author: Erik Nagel 25.03.2020 Erik Nagel: created
See also