PyQt:How do i set different header sizes for individual headers?

后端 未结 2 879
后悔当初
后悔当初 2020-12-30 08:59

I have a list containing lists with two items,a word and a number.This list will be presented using a tablewidget.

My aim is to produce a table with two columns and

相关标签:
2条回答
  • 2020-12-30 09:40

    There are a few methods of the QHeaderView class that will probably do what you want. The simplest is:

    table.horizontalHeader().setStretchLastSection(True)
    

    This will ensure that the last column is automatically resized to fit the available space in the table, leaving the width of the other columns as they are (and resizable by the user).

    Alternatively, there are methods for setting the ResizeMode of the columns.

    For Qt5:

    table.setColumnWidth(1, 80)
    table.horizontalHeader().setSectionResizeMode(0, QHeaderView.Stretch)
    

    For Qt4:

    table.setColumnWidth(1, 80)
    table.horizontalHeader().setResizeMode(0, QHeaderView.Stretch)
    

    This will fix the width of the second column, and ensure the first column is automatically resized to fill the remaining space (but preventing any other resizing by the user).

    0 讨论(0)
  • 2020-12-30 09:46

    the best solution for this, in Qt5 you have to use setSectionResizeMode instead of setResizeMode:

    tabv = QTableView()
    tabv.horizontalHeader().setSectionResizeMode(QHeaderView.Stretch)
    

    or

    tabv.horizontalHeader().setSectionResizeMode(1)
    
    0 讨论(0)
提交回复
热议问题