close
詳情請入內,呵呵~~!!
方法一:(兩點之間的線段)
Graphics g = this.CreateGraphics();
Pen pen = new Pen(Color.Blue, 2);
//10, 10 為起始位置,20, 20 終點位置
g.DrawLine(pen, 10, 10, 20, 20);
方法二:(多點之間的線段)
Graphics g = this.CreateGraphics();
Pen pen = new Pen(Color.Blue, 2);
//定義一個陣列有三個點
//分別為(10,10)、(20,20)、(30,30)
Point[] points =
{
new Point(10, 10),
new Point(20, 20),
new Point(30, 30)
};
g.DrawLines(pen, points);
以上若有錯誤,可進行告知與糾正,謝謝~~!
全站熱搜
留言列表