1
合併wx.grid中的adiacent細胞是否可能?我的意思是水平的連續的單元格和垂直的單元格在一列中。合併wx.Grid中的adiacent細胞
合併wx.grid中的adiacent細胞是否可能?我的意思是水平的連續的單元格和垂直的單元格在一列中。合併wx.Grid中的adiacent細胞
有一種方法可以使文本跨越網格小部件中的多行或多列。在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");
注意:您不需要分號。我不知道他們爲什麼在這個例子中。