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.
我正在使用 wx.Grid 构建类似电子表格的输入界面。我想锁定单元格的大小,以便用户无法更改它们。我已经成功禁用了grid.EnableDragGridSize(False)网格的拖动大小,但用户仍然可以通过使用列标签和行标签之间的边框来调整单元格的大小。我可能在wxGrid文档中遗漏了一些东西。
grid.EnableDragGridSize(False)
wxGrid
我找到了解决方案。要完全锁定用户调整单元格大小的能力,需要使用.EnableDragGridSize(False),.DisableDragColSize()和.DisableDragRowSize() 方法。
.EnableDragGridSize(False)
.DisableDragColSize()
.DisableDragRowSize()