Bonjour,
je d�marre pour dessiner � l'�cran et ca d�marre mal
J'essaye de dessiner une ligne dans un picturebox mais je n'ai rien � l'�cran ?Citation:
Point point1 = Point(1,1);
Point point2 = Point(500,500);
Pen^ blackPen = gcnew Pen( Color::Black,3 );
Graphics ^g;
g= this->pictureBoxTXT->CreateGraphics();
g->DrawLine( blackPen, point1, point2 );
J'ai oubli� quelque chose ?