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