C#Windows-Formsプロジェクトに問題があります。正方形を描画しようとしていますが、画像ボックス内に正方形を表示したいと思います。どうやってやるの?
これは、正方形を描くための私の関数です。
public void DrawingSquares(int x, int y)//the function gets x and y to know where to print the square.
{
Graphics graphicsObj;
graphicsObj = this.CreateGraphics();
Pen myPen = new Pen(Color.Black, 5);
Rectangle myRectangle = new Rectangle(x, y, 100, 100);
graphicsObj.DrawRectangle(myPen, myRectangle);
}