I have a simple application that captures 6 points clicked by user on a form and then , after clicking the "start" connects them smoothly. The problem is that after clicking a button the points flash for a while, and then they are being connected. Please help me to resolve this blinking. I used DoubleBuffered, it didn't helped.
namespace points_animation
{
public partial class Form1 : Form{
List<Point> corners = new List<Point>();
Pen p = new Pen(Brushes.Yellow, 2);
bool started = false;
bool clicked = false;
GraphicsPath TempGP;
public Form1()
{
InitializeComponent();
TempGP = new GraphicsPath();
}
public void draw(Graphics g)
{
for (int i = 0; i < 5; i++)
{
Point some1 = corners[i];
Point some2 = corners[i + 1];
double k = (1.0 * (some1.Y - some2.Y)) / (some1.X - some2.X);
double b = (double)some1.Y - k * (double)some1.X;
for (int ii = some1.X; ii < some2.X; ii++)
{
g.DrawLine(p, new Point((int)ii, (int)(k * ii + b)), new Point((int)(ii + 2), (int)(k * (ii + 2) + b)));
Refresh();
Thread.Sleep(20);
}
}
started = false;
}
Graphics g = null;
private void Form1_Paint(object sender, PaintEventArgs e)
{
g = e.Graphics;
if (clicked)
{
g.DrawPath(p, TempGP);
}
if (started)
{
draw(g);
started = false;
}
}
private void button1_Click(object sender, EventArgs e)
{
started = true;
Refresh();
}
private void Form1_MouseDown(object sender, MouseEventArgs e)
{
corners.Add(new Point(e.X, e.Y));
clicked = true;
TempGP.AddEllipse(new Rectangle(e.X, e.Y, 3, 3));
Refresh();
}
}
}
Thread.Sleepactually hangs the UI for that duration, which may sometimes cause flickering.. – dotNETbeginner Nov 26 '12 at 13:39