I have a very simple TableLayoutPanel which, however, looks very strange:
I create textboxes which contain a short string, usually only one character, all the same width and height. I put the textboxes in user controls, again all the same width and height. Then I add the user controls to a TableLayoutPanel. What could be making those first two columns so wide? Scroll bars are turned on for the TableLayoutPanel. So what you see in the screen shot is the entire TableLayoutPanel.
This is my second use of TableLayoutPanel. So I figure I am making a common mistake. But this use is similar to my previous use and I didn't have this problem them.
(I know that not all of the info in the debug message is relevant. And for it to make sense it helps to know that the user controls, the ones added to the TableLayoutPanel, are contained within instances of a class which are in a generic List. Thus .item(1) refers to the 2nd user control.)
What did I do wrong?
Thanks, Bob