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 库在 python 中编写程序。我找不到以下问题的答案:
是否可以更改 wx.StaticBox 的标签对齐方式(从左到中)?
也就是说,鉴于我有这个:
ASysBox = wx.StaticBox(self, label='System A')
我需要对齐中心“系统 A”标题
感谢您的时间和考虑。
您可以尝试将对齐标志传递给样式参数,但我无法让它在 Windows 上工作。它可能取决于操作系统,也可能只是不受支持。您最好使用 wx.DC 或类似工具自己绘制它。wxPython 演示中有绘图示例,您可以开始使用。