Dear,
How can I add an arrow shape into the imageeditor with a specified height, length, direction (pointing upwards, or downwards, or left, or right, or any other angle).
Currently I use the following code, but the BOUNDS property seems to be ignored for an arrow (where it does work fine for a circle or rectangle)
Snippetvar Red = new SolidColorBrush(Colors.Red);
PenSettings penSettings = new PenSettings()
{
StrokeWidth = 8,
Stroke = Red,
Fill = Red,
Bounds = new Rect(20, 20, 20, 20)
};
imageeditor.AddShape(ShapeType.Arrow, penSettings);Best regards,
Koen