Class TreeViewAssist
- Namespace
- HeBianGu.General.WpfControlLib
- Assembly
- HeBianGu.General.WpfControlLib.dll
public static class TreeViewAssist
- Inheritance
-
TreeViewAssist
- Inherited Members
Fields
AdditionalTemplateProperty
Allows additional rendering for each tree node, outside of the rippled part of the node which responsds to user selection.
public static readonly DependencyProperty AdditionalTemplateProperty
Field Value
Remarks
The content to be rendered is the same of the TreeViewItem; i.e the Header property, or some other content such as a view model, typically when using a HierarchicalDataTemplate.
AdditionalTemplateSelectorProperty
Allows additional rendering for each tree node, outside of the rippled part of the node which responsds to user selection.
public static readonly DependencyProperty AdditionalTemplateSelectorProperty
Field Value
Remarks
The content to be rendered is the same of the TreeViewItem; i.e the Header property, or some other content such as a view model, typically when using a HierarchicalDataTemplate.
SuppressAdditionalTemplate
To be used at TreeViewItem level, or to be returned by AdditionalTemplateSelector implementors when the additional template associated with a tree should not be used.
public static readonly DataTemplate SuppressAdditionalTemplate
Field Value
Methods
CreateEmptyGridDataTemplate()
public static DataTemplate CreateEmptyGridDataTemplate()
Returns
GetAdditionalTemplate(DependencyObject)
Gets the additional template.
public static DataTemplate GetAdditionalTemplate(DependencyObject element)
Parameters
element
DependencyObjectThe element.
Returns
- DataTemplate
The DataTemplate.
GetAdditionalTemplateSelector(DependencyObject)
Gets the additional template selector.
public static DataTemplateSelector GetAdditionalTemplateSelector(DependencyObject element)
Parameters
element
DependencyObjectThe element.
Returns
SetAdditionalTemplate(DependencyObject, DataTemplate)
Sets the additional template.
public static void SetAdditionalTemplate(DependencyObject element, DataTemplate value)
Parameters
element
DependencyObjectThe element.
value
DataTemplateThe value.
SetAdditionalTemplateSelector(DependencyObject, DataTemplateSelector)
Sets the additional template selector.
public static void SetAdditionalTemplateSelector(DependencyObject element, DataTemplateSelector value)
Parameters
element
DependencyObjectThe element.
value
DataTemplateSelectorThe value.