public BubbleTreeGridConfiguration(BubbleTreeView <T> bubbleTreeView, BubbleTreeViewConfiguration <T> previousConfiguration) { _bubbleTreeView = bubbleTreeView; _previousConfiguration = previousConfiguration; }
public BubbleTreeSearchEntryConfiguration(Entry searchEntry, BubbleTreeViewConfiguration <T> previousConfiguration) { _previousConfiguration = previousConfiguration; _searchEntry = searchEntry; }
public BubbleTreeToolBarItemsConfiguration(BubbleTreeView <T> bubbleTreeView, BubbleTreeViewConfiguration <T> previousConfiguration) { _previousConfiguration = previousConfiguration; _bubbleTreeView = bubbleTreeView; }
public BubbleTreeLeafNodesConfiguration(BubbleTreeView <T> bubbleTreeView, BubbleTreeViewConfiguration <T> previousConfiguration) { _previousConfiguration = previousConfiguration; _bubbleTreeView = bubbleTreeView; }
/// <summary> /// Starts configuration of component style customization. /// </summary> /// <returns></returns> public BubbleTreeViewConfiguration <T> BeginViewConfiguration() { _bubbleTreeViewConfiguration = new BubbleTreeViewConfiguration <T>(_bubbleTreeViewModel._bubbleTreeView, this); return(_bubbleTreeViewConfiguration); }