public SelectionBoxHandler(FrameworkElement owner, SelectionBox selectionBox)
 {
     AssertSelectionBoxProperties(owner, selectionBox);
     SelectionBox   = selectionBox;
     Owner          = owner;
     ElementManager = new SelectionBoxElementManager(Owner, SelectionBox);
     OwnerUIManager = new SelectionBoxOwnerUIManager(Owner, SelectionBox, ElementManager);
 }
Exemple #2
0
 public SelectionBoxOwnerUIManager(FrameworkElement owner, SelectionBox selectionBox, SelectionBoxElementManager elementManager)
 {
     Owner          = owner;
     SelectionBox   = selectionBox;
     ElementManager = elementManager;
 }