是否可以在wx.grid中合并adiacent细胞?我的意思是水平作为一行中的单元格,垂直作为列中的单元格。
答案 0 :(得分:3)
有一种方法可以使文本跨越网格小部件中的多个行或列。 wxPython演示中有一个名为GridSimple.py的示例。见第64-67行。他们的内容如下:
self.SetCellValue( 9, 1, "This default cell will overflow into neighboring cells, but not if you turn overflow off.");
self.SetCellSize(11, 1, 3, 3);
self.SetCellAlignment(11, 1, wx.ALIGN_CENTRE, wx.ALIGN_CENTRE);
self.SetCellValue(11, 1, "This cell is set to span 3 rows and 3 columns");
注意:您不需要分号。我不知道为什么他们在这个例子中。