Render conway game of life in a .net application


Problem: Render Conway's Game of Life in a .NET application. A grid should be rendered representing the individual cells. Cells can be turned on and off by clicking on them with the mouse. Once a group of cells are turned on and the game runs they should live or die according the 4 rules of the game.

Living cells with less than 2 living neighbors die in the next generation.

Living cells with more than 3 living neighbors die in the next generation.

Living cells with 2 or 3 living neighbors live in the next generation.

Dead cells with exactly 3 living neighbors live in the next generation.

Start, Pause and Next menu items. The game should start running by clicking on a Start menu item. The game should be pause by clicking on a Pause menu item. If currently paused, the game can be advanced 1 generation by clicking on a Next menu item.

Emptying the universe. The universe should be emptied of all living cells through a New or Clear menu item.

Request for Solution File

Ask an Expert for Answer!!
DOT NET Programming: Render conway game of life in a .net application
Reference No:- TGS03253117

Expected delivery within 24 Hours