vote up 0 vote down star
1

I need to draw an arrow between controls in a canvas. Currently I'm using the Line object but it doesn't have a way to draw a triangle at the end of the line.

This is roughly what I need:

[TextBox] <----- [Button]

I was trying to subclass Line and add a couple of lines at the end but the class is sealed.

How would you build a custom control that draws an arrow between X1,Y1 and X2,Y2?

Thanks

flag

2 Answers

vote up 0 vote down check

Charles Petzold wrote a library for doing this in WPF. The logic, at least, should be transferable to Silverlight. It uses Polylines and Paths and should be easy to port.

Lines with Arrows @ Petzold Book Blog

--EDIT--

Ok -- here's another way to go about it:

Create a user control:

<UserControl x:Class="ArrowsAndDaggersLibrary.ArrowsAndDaggersUC"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Canvas x:Name="LayoutRoot">
        <Line x:Name="Cap" />
        <Line x:Name="Connector" />
        <Line x:Name="Foot" />
    </Canvas>
</UserControl>

with the following code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace ArrowsAndDaggersLibrary
{
    public partial class ArrowsAndDaggersUC : UserControl
    {
        private Point startPoint;
        public Point StartPoint
        {
            get { return startPoint; }
            set
            {
                startPoint = value;
                Update();
            }
        }

        private Point endPoint;
        public Point EndPoint
        {
            get { return endPoint; }
            set { 
                endPoint = value;
                Update();
            }
        }

        public ArrowsAndDaggersUC()
        {
            InitializeComponent();
        }

        public ArrowsAndDaggersUC(Point StartPoint, Point EndPoint)
        {
            InitializeComponent();
            startPoint = StartPoint;
            endPoint = EndPoint;
            Update();
        }

        private void Update()
        {
            //reconfig
            Connector.X1 = startPoint.X;
            Connector.Y1 = startPoint.Y;
            Connector.X2 = endPoint.X;
            Connector.Y2 = endPoint.Y;
            Connector.StrokeThickness = 1;
            Connector.Stroke = new SolidColorBrush(Colors.Black);

            Cap.X1 = startPoint.X;
            Cap.Y1 = startPoint.Y;
            Cap.X2 = startPoint.X;
            Cap.Y2 = startPoint.Y;
            Cap.StrokeStartLineCap = PenLineCap.Triangle;
            Cap.StrokeThickness = 20;
            Cap.Stroke = new SolidColorBrush(Colors.Black);

            Foot.X1 = endPoint.X;
            Foot.Y1 = endPoint.Y;
            Foot.X2 = endPoint.X;
            Foot.Y2 = endPoint.Y;
            Foot.StrokeEndLineCap = PenLineCap.Triangle;
            Foot.StrokeThickness = 20;
            Foot.Stroke = new SolidColorBrush(Colors.Black);
        }
    }
}

Call it like this:

LayoutRoot.Children.Add(new ArrowsAndDaggersUC(new Point(200, 200), new Point(300, 400)));

and you will have 1px stroke lines with 20px stroke triangles on the end of each line.

link|flag
That's some interesting code but in Silverlight I can't inherit from Line (or shape for that matter) like Petzold did in WPF. Line is sealed and Shape doesn't do any drawing. I think the runtime is in charge of drawing because each of the Shape classes have a different "known identifier". – Joseph Liberty Oct 14 at 14:00
The second example worked. Thanks. – Joseph Liberty Oct 14 at 22:46
vote up 0 vote down

You can try a triangle cap for a pen; i've used it for something similar

http://msdn.microsoft.com/en-us/library/system.windows.media.penlinecap%28VS.95%29.aspx

link|flag
But the Triangle is of the width of the line and the line is 1px so it doesn't show. – Joseph Liberty Oct 14 at 13:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.