المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : DrawCurve Thickness/Width ?



C# Programming
07-03-2009, 06:13 AM
Point[] pts = new Point[]
{
new Point(100, 300),
new Point(200, 200),
new Point(300, 100),
new Point(400, 300),
new Point(500, 100),
new Point(600, 300),
new Point(700, 500),
new Point(800, 200),
new Point(900, 300),
};
GDI.Graphics.DrawCurve(Pens.Red, pts, 0.5f);

Hello i am drawing a curve using the Graphics.DrawCurve method but i cant seem to find a way of changing the Thickness/Width of the line that draws the curve . Is there an alternative function for changing the curve Thickness/Width ?