最近做一個(gè)項(xiàng)目是使用python開(kāi)發(fā)電子稱的GUI圖形交互界面,其中一個(gè)頁(yè)面需要通過(guò)串口實(shí)時(shí)讀取電子稱的重量,并將每一件商品的信息展示在頁(yè)面的表格中。
steStyleSheet的語(yǔ)法和css類似,可以針對(duì)某一類元素統(tǒng)一設(shè)置樣式,也可以指定某一個(gè)元素單獨(dú)設(shè)置樣式
下面是一個(gè)例子
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *
import sys
class MyTable(QTableWidget):
def __init__(self,parent=None):
super(MyTable,self).__init__(parent)
self.setWindowTitle("me")
self.setShowGrid(False)#設(shè)置顯示格子線
# self.setStyleSheet("QTableWidget{background-color: white;border:20px solid #014F84}")
self.setStyleSheet("QTableWidget{background-color: black;border:20px solid #014F84}"
"QTableWidget::item{border:1px solid #014F84}")
self.resize(1000,600)
self.setColumnCount(5)
self.setRowCount(2)
self.setColumnWidth(0,220)
self.setColumnWidth(1, 220)
self.setColumnWidth(2, 220)
self.setColumnWidth(4,300)
self.setRowHeight(0,100)
#設(shè)置第一行高度為100px,第一列寬度為200px
self.table()
def table(self):
#self指的是MyTable這個(gè)類
# self.setStyleSheet("Box{border:5px}")
Item00=QTableWidgetItem("2018/11/09 10:45\nXXX歡迎使用X號(hào)工作臺(tái)")
textFont=QFont("song",14,QFont.Bold)
Item00.setFont(textFont)
self.setItem(0,0,Item00)
# self.resizeColumnsToContents()
# self.resizeRowsToContents()#行和列的大小設(shè)置為與內(nèi)容相匹配
Item01=QTableWidgetItem("九亭1號(hào)倉(cāng)")
textFont=QFont("song",19,QFont.Bold)
Item01.setFont(textFont)
self.setItem(0,1,Item01)
Item02 = QTableWidgetItem("美菜 土豆 3KG")
textFont = QFont("song", 19, QFont.Bold)
Item02.setFont(textFont)
self.setItem(0,2,Item02)
button=QPushButton()
Item03 = QTableWidgetItem("退出")#在這里面需要加一個(gè)按鈕,按鈕為紅色,按鈕文字為退出
textFont = QFont("song", 13, QFont.Bold)
button.setFont(textFont)
button.setObjectName("button")
button.setStyleSheet("#button{background-color: red}")
Item03.setFont(textFont)
self.setItem(0,3,Item03)
self.verticalHeader().setVisible(False)#影藏列表頭
self.horizontalHeader().setVisible(False)#隱藏行表頭
#下面設(shè)置表格的邊框顏色
self.item(0, 0).setForeground(QBrush(QColor(255, 255, 255)))
self.item(0,0).setForeground(QBrush(QColor(255,255,255)))#設(shè)置字體的顏色,還需要設(shè)置字體的大小
self.item(0,1).setForeground(QBrush(QColor(255, 255, 255)))
self.item(0,2).setForeground(QBrush(QColor(255, 255, 255)))
self.item(0,3).setForeground(QBrush(QColor(255, 255, 255)))
# self.item(0,4).setForeground(QBrush(QColor(255, 255, 255)))
app=QApplication(sys.argv)
mytable=MyTable()
mytable.show()
app.exec()
補(bǔ)充:使用setStyleSheet來(lái)設(shè)置圖形界面的外觀
QT Style Sheets是一個(gè)很有利的工具,允許定制窗口的外觀,此外還可以用子類QStyle來(lái)完成,他的語(yǔ)法很大比重來(lái)源于html的CSS,但是適用于窗口。
概括:
Style Sheets是文字性的設(shè)定,對(duì)于整個(gè)應(yīng)用程序可以使用QApplication::setStyleSheet() 或者對(duì)應(yīng)一個(gè)窗口可以使用QWidget::setStyleSheet(),如果好幾個(gè)樣式表在不同的層次上設(shè)定,QT將會(huì)集合所有的樣式表來(lái)設(shè)定外觀,這稱作級(jí)串聯(lián)
//例如:下面的樣式表指定所有的QLineEdit應(yīng)該用黃色作為他們的背景顏色,所有的核對(duì)框應(yīng)該用紅色作為他們的文本顏色
QLineEdit { background: yellow }
QCheckBox { color: red }
對(duì)于這種定制,樣式表比palette調(diào)色板更強(qiáng)大,例如使用QPalette::Button role來(lái)設(shè)定一個(gè)按鈕為紅色可能引起危險(xiǎn)。對(duì)于單獨(dú)使用QPalette很難完成的定制,樣式表可以指定樣式表作用于當(dāng)前窗口樣式頂部,這意味這應(yīng)用程序講看起來(lái)盡可能的自然,但是任何樣式表系統(tǒng)參數(shù)應(yīng)該考慮,不像QPalette那樣,樣式表提供檢查,如果你設(shè)定了一個(gè)按鈕的背景顏色為紅色,你應(yīng)該確定在所有的平臺(tái)按鈕將會(huì)有一個(gè)紅色的背景,除此,Qt Designer提供樣式表集成環(huán)境,使得在不同的窗口樣式中更容易看到樣式表的效果。
此外,樣式表可以用來(lái)為你的應(yīng)用程序提供一個(gè)出眾的外觀,不需要使用子類QStyle,例如,可以指定任意的圖片為單選按鈕和核對(duì)按鈕,來(lái)使它們出眾,使用這個(gè)技術(shù),也可以獲得輔助的定制,這將使用幾個(gè)子類,例如指定style hint(樣式暗示),可以參看例子 Style Sheet。當(dāng)樣式表有效時(shí)候,使用QWidget::style()可以返回QStyle。
樣式表語(yǔ)法:樣式表語(yǔ)法基本和HTML CSS語(yǔ)法一致。樣式表包含了樣式規(guī)則序列,樣式規(guī)則有一個(gè)selector>和declaration>組成,selector>指定哪些窗口將會(huì)被這些規(guī)則影響,declaration>指定哪些屬性將會(huì)被設(shè)定在窗口上,例如QPushButton{color:red}。在上面的規(guī)則中,QPushButton是selector>,{color:red}是declaration>,這個(gè)規(guī)則指定QPushButton和他的子類將使用紅色作為前景顏色,就是字體顏色,并且對(duì)大小寫沒(méi)有分別,對(duì)于color,ColoR,COLOR是一樣的。
幾個(gè)selector>可以同時(shí)被列出,使用逗號(hào)","來(lái)分開(kāi)各個(gè)selector>,例如:QPushButton, QLineEdit, QComboBox { color: red };declaration>部分是一對(duì) 屬性:值 對(duì),用{}來(lái)括起來(lái),使用分號(hào)來(lái)分開(kāi)各個(gè)屬性,例如QPushButton { color: red; font-family: Arial; line-height: 26px;">可以參看Qt Style Sheets Reference來(lái)查看部件以及樣式表的屬性列表。
關(guān)于樣式表的級(jí)聯(lián)屬性
看下面代碼的不同
btn1->setStyleSheet("QPushButton{color:red}"); //設(shè)定前景顏色,就是字體顏色
btn1->setStyleSheet("QPushButton{background:yellow}"); //設(shè)定背景顏色為紅色
和
btn1->setStyleSheet("QPushButton{color:red;background:yellow}");
第一個(gè)代碼只能顯示黃色背景,第二個(gè)確實(shí)紅色字體,黃色背景。所以對(duì)于同一個(gè)部件,要在同一個(gè)setStyleSheet(...)中完全寫出來(lái),否則對(duì)于該部件來(lái)講,只有最后一個(gè)setStyleSheet(...)起作用。
源代碼示例:
Dialog::Dialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::Dialog)
{
ui->setupUi(this);
this->setWindowFlags(this->windowFlags()Qt::WindowMaximizeButtonHintQt::WindowMinimizeButtonHint);//為對(duì)話框添加上最大化和最小化按鈕
// layout=new QBoxLayout(this);
layout1=new QGridLayout(this);
btn1=new QPushButton(this);
btn1->setStyleSheet("QPushButton{color:red;background:yellow}"); //設(shè)定前景顏色,就是字體顏色
// btn1->setStyleSheet("QPushButton{background:yellow}");
btn1->setText("Button1");
btn2=new QPushButton(this);
btn2->setStyleSheet("QPushButton{color:red; //使用rgb來(lái)設(shè)定背景顏色
btn2->setText("Button2");
btn3=new QPushButton(this);
btn3->setStyleSheet("QPushButton{background-image:url(image/1.png);background-repeat: repeat-xy;background-position: center;background-attachment: fixed;background-attachment: fixed;background-attachment: fixed;;background-clip: padding}");
//設(shè)定按鈕的背景圖片,background-repeat可以設(shè)定背景圖片的重復(fù)規(guī)則,這里設(shè)定僅在xy方向都重復(fù),所以圖片會(huì)被重復(fù)一次
//background-position用來(lái)設(shè)定圖片的位置,是左(left)還是右(right),還是在中間(center),是上(top)還是底部(bottom)
//background-attachment用來(lái)這定背景圖片是否卷動(dòng)或者和窗口大小相匹配,默認(rèn)是卷動(dòng)的
btn3->setText("Button3");
btn4=new QPushButton(this);
btn4->setStyleSheet("QPushButton{border: 3px solid red;border-radius:8px}"); //設(shè)定邊框?qū)挾纫约邦伾?
//可以使用border-top,border-right,border-bottom,border-left分別設(shè)定按鈕的上下左右邊框,
//同樣有border-left-color, border-left-style, border-left-width.等分別來(lái)設(shè)定他們的顏色,樣式和寬度
//border-image用來(lái)設(shè)定邊框的背景圖片。
//border-radius用來(lái)設(shè)定邊框的弧度。可以設(shè)定圓角的按鈕
btn4->setText("Button4");
//字體設(shè)定
//font-family來(lái)設(shè)定字體所屬家族,
//font-size來(lái)設(shè)定字體大小
//font-style來(lái)設(shè)定字體樣式
//font-weight來(lái)設(shè)定字體深淺
//height用來(lái)設(shè)定其高低
//selection-color用來(lái)設(shè)定選中時(shí)候的顏色
edit1=new QLineEdit(this);
edit1->setStyleSheet("QLineEdit{font: bold italic large /"Times New Roman/";font-size:25px;color:rgb(55,100,255);height:50px;border:4px solid rgb(155,200,33);border-radius:15px;selection-color:pink}");
//父窗口的設(shè)定
//icon-size來(lái)設(shè)定圖片大小
this->setWindowIcon(QIcon("image/1.png"));
this->setStyleSheet("QWidget{background:write url(image/2.png);icon-size:20px 5px}"); //設(shè)定整個(gè)對(duì)話框的背景顏色
// this->setStyleSheet("QWidget{icon-size:20px 5px}");
layout1->addWidget(btn1,0,0);
layout1->addWidget(btn2,0,1);
layout1->addWidget(btn3,1,0);
layout1->addWidget(btn4,1,1);
layout1->addWidget(edit1,2,0);
}
這里只給出來(lái)widget主窗口的cpp文件,運(yùn)行得到的結(jié)果如下圖
我們看到連粘貼 復(fù)制板都變成了使用樣式表來(lái)設(shè)定的樣式
以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。
您可能感興趣的文章:- Python GUI庫(kù)PyQt5圖形和特效樣式QSS介紹
- PyQt5 控件字體樣式等設(shè)置的實(shí)現(xiàn)
- python設(shè)置表格邊框的具體方法