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?