Esempio n. 1
0
 public SelectionBoxHandler(FrameworkElement owner, SelectionBox selectionBox)
 {
     AssertSelectionBoxProperties(owner, selectionBox);
     SelectionBox   = selectionBox;
     Owner          = owner;
     ElementManager = new SelectionBoxElementManager(Owner, SelectionBox);
     OwnerUIManager = new SelectionBoxOwnerUIManager(Owner, SelectionBox, ElementManager);
 }
Esempio n. 2
0
 public SelectionBoxOwnerUIManager(FrameworkElement owner, SelectionBox selectionBox, SelectionBoxElementManager elementManager)
 {
     Owner          = owner;
     SelectionBox   = selectionBox;
     ElementManager = elementManager;
 }