QComboBox樣式表:字體、圖標、項高


		QComboBox *cmBox = new QComboBox();
		cmBox->setStyleSheet("QComboBox{font-family:'微軟雅黑';font-size:9; border:1px solid lightgray;}"
			"QComboBox QAbstractItemView::item {min-height: 20px;}"
			"QComboBox::drop-down{border-left-width: 1px;border-left-color: lightgray;border-left-style: solid; border-top-right-radius: 3px;border-bottom-right-radius: 3px;subcontrol-origin: padding;subcontrol-position: top right; width:20px;}"
			"QComboBox::down-arrow{image:url(:/FlightSimCaptain/Resources/down_arrow.png)}"
			"QComboBox::down-arrow:hover{image:url(:/FlightSimCaptain/Resources/down_arrow_press.png)}"
			"QComboBox::down-arrow:pressed{image:url(:/FlightSimCaptain/Resources/down_arrow_press.png)}");
		cmBox->addItem("04");
		cmBox->addItem("22");
		QStyledItemDelegate *delegate = new QStyledItemDelegate(this);
		cmBox->setItemDelegate(delegate);

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM