Dotted lines

  • Thread starter Thread starter Durand
  • Start date Start date
Hi,

You might try something like this:

private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs
e)

{

using (Pen p = new Pen(Color.Black))

{

p.DashStyle = DashStyle.Dot;

e.Graphics.DrawLine(p, new Point(0, 0), new Point(100, 100));

}

}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top