Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个扩展 PyGridCellRenderer 的类,我可以使用 self.colSize = SOME_SIZE 设置列的大小,但是为所有列设置相同的大小,我如何设置特定列的大小?
尝试这个:
SetCellSize(row, col, num_rows, num_cols);
这会将坐标行 col 处的单元格设置为流过 num_rows 行和 num_col 列。
如果这不是您想要的并且想要使用像素,那么:
SetColSize(col, width); SetRowSize(row, height);
您可以使用以下方法确定行或列的当前大小:
GetColSize(col) GetRowSize(row)
让我知道它是否不起作用。