Qt中一些亂七八糟的小知識點(不斷更新)

//返回最接近的整數
    qRound(amount*100/total); 
    
    
QTableWidget:
    //設置交替行底色變化
    ui->tableWidget->setAlternatingRowColors(true);
    //橫向伸展單元格,鋪滿屏幕
    ui->tableWidget->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
    
    //只寫模式若是無文件會自動建立
    if(!dataFile.open(QIODevice::WriteOnly)){
            qDebug()<<"文件打開失敗"<<dataFile.errorString();
    }
    dataFile.close();
相關文章
相關標籤/搜索