-3

I'm looking for a fixed table, like HTML table to fill data in each row. I took a look at TableLayoutPanel, but this is not what I'm looking for because you can't fill the cells programmatically. Anyone have an idea how to handle this?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
Nicolas
  • 129
  • 1
  • 2
  • 5

1 Answers1

0

You can fill the cells from code. See this example:

TableLayoutPanel panel = new TableLayoutPanel();
panel.Controls.Add(new TextBox(), 1, 1);

See: http://msdn.microsoft.com/en-us/library/he3sxc2a.aspx

Adriano Repetti
  • 65,416
  • 20
  • 137
  • 208