QTableWidget 中的 QComboBox 和 QSpinBox 具有适当的对齐方式
如何创建一个有 2 列的 QTable 小部件,在第一列中有一个 QComboBox,在第二列中有一个 QSpinBox,这样组合框就可以获得表格的所有空间,并且只为 QSpinBox 留出很小的空间(对于2-3 位数字)。
How to create a QTable widget which has 2 columnes, and in first column there is a QComboBox and in the second column there is a QSpinBox so that the combo box gets all the space of table and only a very small place leaves for QSpinBox (for 2-3 digits).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,使用
setCellWidget()
将QComboBox
和QSpinBox
设置为要在相应单元格中显示的小部件。其次,使用
horizontalHeader()
访问QHeaderView
为QTableView
,然后设置ResizeMode
相应地。First, use
setCellWidget()
to set theQComboBox
andQSpinBox
as the widgets to be displayed in the appropriate cell.Second, use
horizontalHeader()
to access theQHeaderView
for theQTableView
, then set theResizeMode
accordingly.