美文网首页
qtablewidget

qtablewidget

作者: poofball44 | 来源:发表于2018-10-28 20:08 被阅读0次

    void QTableWidget::cellChanged(int row, int column)

    This signal is emitted whenever the data of the item in the cell specified by row and column has changed.

    行和列所确定的cell中的item的数据变化时,被触发。

    void QTableWidget::itemChanged(QTableWidgetItem  *item)

    This signal is emitted whenever the data of item has changed.

    当item的数据变化时,被触发。

    QTableWidgetItem::QTableWidgetItem(int type = Type)

    Constructs a table item of the specified type that does not belong to any table.

    构造type类型的item。

    See also type().

    QTableWidgetItem::QTableWidgetItem(const QString &text, int type = Type)

    Constructs a table item with the given text.

    用文本构造item。

    See also type().

    QTableWidgetItem::QTableWidgetItem(const QIcon &icon, const QString &text, int type = Type)

    Constructs a table item with the given icon and text.

    用图标和文本构造item。

    See also type().

    QTableWidgetItem::QTableWidgetItem(const QTableWidgetItem &other)

    Constructs a copy of other. Note that type() and tableWidget() are not copied.

    This function is useful when reimplementing clone().

    构造一个other的副本。

    This function was introduced in Qt 4.1.

    See also data() and flags().

    相关文章

      网友评论

          本文标题:qtablewidget

          本文链接:https://www.haomeiwen.com/subject/nnemtqtx.html