up vote 0 down vote favorite
share [g+] share [fb]

Im trying to write a usercontrol that has a 10 x 10 grid of textboxes, keyboard navigation between them and keyboard increment/decrement and then custom highlighting dependent on variables coming in on my coms module.

My idea was to store the textboxes in a 2D array for easier referencing. Am I going obout this the right way? Any other pointers?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

It could work.

You should also take a look at the TableLayoutPanel, it will probably provide a lot of the layout and navigation you need. You can find a Control form a Tablelayout with GetControlFromPosition(row, col), but if you want to maintain a parallel array that won't hurt.

link|improve this answer
im using the TableLayoutPanel, working very well! – Jim May 28 '09 at 14:38
feedback

It's been a long time since my last GUI application in C#, but if it was so similar to Java as I remember, I wouldn't create 100 grid boxes, but a table that reuses the same display/editor component for the different data...

I think almost the same MVC patterns are used in Windows Forms as in Swing, so it should work in a similar way.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.