tags:

views:

127

answers:

1

I would like to know if there are any inbuilt controls in C# with which I can program location grid maps on a X/Y Plane.

+1  A: 

The only thing that comes to mind is the grid view. You could arrange the columns and rows into a regular grid.

Besides that, .Net makes it very easy to place controls dynamically into containers. You could also do manual drawing which is very straightforward.

Here is an example of grid painting.

And here's an example of dynamically adding controls to a form.

Paul Sasik