This commit is contained in:
Wiesław Šoltés 2017-01-06 17:07:41 +01:00
Родитель 62594428b8
Коммит 1f046ad913
2 изменённых файлов: 19 добавлений и 0 удалений

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

@ -91,6 +91,15 @@ namespace ReactiveHistorySample.Avalonia
layerCanvas.InvalidateVisual();
}
}
else if (args.MouseButton == MouseButton.Right)
{
if (line != null)
{
layer1.Shapes.Remove(line);
line = null;
layerCanvas.InvalidateVisual();
}
}
};
layerCanvas.PointerMoved += (sender, args) =>

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

@ -69,6 +69,16 @@ namespace ReactiveHistorySample.Wpf
}
};
layerCanvas.PreviewMouseRightButtonDown += (sender, args) =>
{
if (line != null)
{
layer1.Shapes.Remove(line);
line = null;
layerCanvas.InvalidateVisual();
}
};
layerCanvas.PreviewMouseMove += (sender, args) =>
{
var point = args.GetPosition(layerCanvas);