using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace findlines
{
///
<summary>
/// Summary
description for Form1.
///
</summary>
public class Form1 : System.Windows.Forms.Form
{
///
<summary>
/// Required
designer variable.
///
</summary>
private System.ComponentModel.Container
components = null;
private Line CurrentLine;
private bool AddingLine;
private LineArray Lines=new LineArray();
private Point LastPos;
private bool first = true;
public Form1()
{
//
// Required for Windows Form Designer
support
//
InitializeComponent();
//
// TODO: Add any constructor code after
InitializeComponent call
//
}
///
<summary>
/// Clean up
any resources being used.
///
</summary>
protected override void
Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
///
<summary>
/// Required
method for Designer support - do not modify
/// the
contents of this method with the code editor.
///
</summary>
private void InitializeComponent()
{
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.BackColor =
System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(292, 273);
this.Name = "Form1";
this.Text = "Form1";
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseDown);
this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseUp);
this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseMove);
}
#endregion
///
<summary>
/// The main
entry point for the application.
///
</summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void Form1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs
e)
{
CurrentLine = new Line();
CurrentLine.StartPoint=new
Point(e.X,e.Y);
AddingLine = true;
}
private void Form1_MouseMove(object sender, System.Windows.Forms.MouseEventArgs
e)
{
Graphics g=CreateGraphics();
if(!AddingLine)
{
foreach(Line l in Lines)
{
if(l.IsInLine(new Point(e.X,e.Y)))
l.DrawLine(g,Color.Red);
else
l.DrawLine(g,Color.Black);
}
LastPos = new Point(e.X,e.Y);
}
else
{
if(!first)
ControlPaint.DrawReversibleLine(PointToScreen(CurrentLine.StartPoint),
PointToScreen(LastPos), Color.White);
LastPos = new Point(e.X,e.Y);
ControlPaint.DrawReversibleLine(PointToScreen(CurrentLine.StartPoint),
PointToScreen(LastPos), Color.White);
first=false;
}
}
private void Form1_MouseUp(object sender, System.Windows.Forms.MouseEventArgs
e)
{
CurrentLine.EndPoint=new
Point(e.X,e.Y);
CurrentLine.PenWidth=5;
Lines.Add(CurrentLine);
AddingLine = false;
Invalidate();
}
private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs
e)
{
foreach(Line l in Lines)
l.DrawLine(e.Graphics,Color.Black);
}
}
public class Line
{
public Point StartPoint;
public Point EndPoint;
public int PenWidth;
public void DrawLine(Graphics g,Color c)
{
Pen
p=new Pen(c,PenWidth);
g.DrawLine(p,StartPoint,EndPoint);
p.Dispose();
}
public bool IsInLine(Point pnt)
{
Pen p = new
Pen(Color.Black,PenWidth);
GraphicsPath pth=new
GraphicsPath();
pth.AddLine(StartPoint,EndPoint);
pth.Widen(p);
p.Dispose();
if(pth.IsVisible(pnt))
return true;
return false;
}
}
public class LineArray : CollectionBase
{
public void Add(Line l)
{
List.Add(l);
}
public Line this[int index]
{
get{return (Line)List[index];}
set{List[index]=value;}
}
}
}