私は現在、同じロジックに従って人生ゲームのシンプルなバージョンを作成し始めています。絵箱を使用しています。エリアがクリックされた場所を知るために、2x2の正方形を使用することをお勧めします。2 x 2の正方形を作成し、pictureBox内にグリッドのようなスタイルを与えるにはどうすればよいですか?
コード
private void Form1_Load(object sender, EventArgs e)
{
this.pictureBox1.Image = this.Draw(this.pictureBox1.Width, this.pictureBox1.Height);
}
public Bitmap Draw(int width, int height)
{
var bitmap = new Bitmap(width, height, PixelFormat.Format32bppArgb);
var graphics = Graphics.FromImage(bitmap);
graphics.SmoothingMode = SmoothingMode.AntiAlias;
graphics.FillRectangle(new SolidBrush(Color.Tomato), 60, 60, 10, 10);
return bitmap;
}
見通しの例