Hello I am currently working on making a program similar to MSpaint. To do this I use an InkCanvas and are using strokes to make shapes like trinagles.

    private void tooltriangle()
    {

      /*Code Code code...*/

        Point1 = new StylusPoint(startx + w / 2, starty);
        Point2 = new StylusPoint(startx, starty + h);
        Point3 = new StylusPoint(startx + w, starty + h);
        Point4 = new StylusPoint(startx + w / 2, starty);


        StylusPointCollection myPointCollection = new StylusPointCollection();
        myPointCollection.Add(Point1);
        myPointCollection.Add(Point2);
        myPointCollection.Add(Point3);
        myPointCollection.Add(Point4);
        System.Windows.Ink.Stroke stroke = new  System.Windows.Ink.Stroke(myPointCollection);
        stroke.DrawingAttributes.Color = Colors.Red;
        inkCanvas1.Strokes.Add(stroke);

    }

I create a triangle like this, but I have no idea how to fill it with colors. Do anyone hav any suggestions?

link|improve this question

73% accept rate
And I dont want to add shapes as children because they always displays under the strokes. – warbio Nov 16 '11 at 18:41
feedback

1 Answer

Your Answer

 
or
required, but never shown

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