-, , - , . , . .
, , , . , , - ( , ). , , ( Paint ).
private void DrawScene(Point mouseLocation)
{
myGraphics.Clear(Color.White)
myGraphics.DrawEllipse(skyBluePen, mouseLocation.X - 150, mouseLocation.Y - 150, 300, 300);
myDrawingSurface.Refresh();
}
private void myDrawingSurface_MouseMove(object sender, MouseEventArgs e)
{
DrawScene(e.Location);
}
private void myDrawingSurface_Paint(object sender, PaintEventArgs e)
{
e.Graphics.DrawImage(myBitmap, 0, 0);
}
"" - ImageBox Image , , Refresh PictureBox. . Paint .
. myBitmap myGraphics . , . , . . , .