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