Support a derived CreateComponentTool

This commit is contained in:
jkuehner 2017-07-26 17:57:23 +02:00
Родитель 5a8a68e897
Коммит 35478b5c19
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -82,7 +82,7 @@ namespace ICSharpCode.WpfDesign.Designer.Services
Point p = e.GetPosition(designPanel);
if (moveLogic == null) {
if (e.Data.GetData(typeof(CreateComponentTool)) != this) return;
if (e.Data.GetData(this.GetType()) != this) return;
// TODO: dropLayer in designPanel
designPanel.IsAdornerLayerHitTestVisible = false;
DesignPanelHitTestResult result = designPanel.HitTest(p, false, true, HitTestType.Default);