我在作一个xml的解析
- <question>
  <id>9</id> 
  <type>table</type> 
  <text>试验表格</text> 
- <rows>
- <row>
  <id>1</id> 
  <text>rowa</text> 
  </row>
+ <row>
  <id>2</id> 
  <text>rowb</text> 
  </row>
- <row>
  <id>3</id> 
  <text>rowc</text> 
- <row>
  <id>4</id> 
  <text>childrowa</text> 
  </row>
- <row>
  <id>5</id> 
  <text>childrowb</text> 
  </row>
  </row>
  </rows>
- <cols>
- <col>
  <id>6</id> 
  <text>cola</text> 
  </col>
- <col>
  <id>7</id> 
  <text>colb</text> 
  </col>
- <col>
  <id>8</id> 
  <text>colc</text> 
- <col>
  <id>9</id> 
  <text>childcola</text> 
  </col>
- <col>
  <id>10</id> 
  <text>childcolb</text> 
  </col>
  </col>
  </cols>
  </question>怎么根据上面的节点后台动态生成一个 类似table表,显示里面的内容,在WinForm中有什么控件可以生成table阿,并且要控制生成table的大小,位置,谢谢:)