Exemple #1
0
 public BubbleTreeViewConfiguration(BubbleTreeView <T> bubbleTreeView, BubbleTreeConfiguration <T> previousConfiguration)
 {
     if (bubbleTreeView == null)
     {
         throw new BubbleTreeNotInitializedException();
     }
     _bubbleTreeView        = bubbleTreeView;
     _previousConfiguration = previousConfiguration;
 }
Exemple #2
0
 public BubbleTreeGridConfiguration(BubbleTreeView <T> bubbleTreeView, BubbleTreeViewConfiguration <T> previousConfiguration)
 {
     _bubbleTreeView        = bubbleTreeView;
     _previousConfiguration = previousConfiguration;
 }
Exemple #3
0
 public BubbleTreeLeafNodesConfiguration(BubbleTreeView <T> bubbleTreeView, BubbleTreeViewConfiguration <T> previousConfiguration)
 {
     _previousConfiguration = previousConfiguration;
     _bubbleTreeView        = bubbleTreeView;
 }
Exemple #4
0
 public BubbleTreeToolBarItemsConfiguration(BubbleTreeView <T> bubbleTreeView,
                                            BubbleTreeViewConfiguration <T> previousConfiguration)
 {
     _previousConfiguration = previousConfiguration;
     _bubbleTreeView        = bubbleTreeView;
 }