QT QLable屬性設定(尺寸,邊框等)

CLW_計算機視覺發表於2020-03-18

1.設定尺寸

setGeometry(x,y,width,height);

x:左上角橫座標
y:左上角縱座標
width:寬度
height:高度

呼叫示例:

ui->label_image->setGeometry(10,10,1024,768);

2.定製控制元件外框
舉例:設定QLabel邊框

 setStyleSheet("QLabel{border:2px solid rgb(200, 200, 200);}");

表示邊框線條寬度2,實線,顏色為(200,200,200)

其他引數:

font: bold; 是否粗體顯示

font-family:""; 來設定字型所屬家族,

font-size:20px; 來設定字型大小

font-style: nomal; 來設定字型樣式

font-weight:20px; 來設定字型深淺

color:black ;字型顏色

 

border: 1px solid gray;邊框大小,樣式,顏色
border-image:""; 用來設定邊框的背景圖片。
border-radius:5px; 用來設定邊框的弧度。可以設定圓角的按鈕
border-width: 1px; 邊框大小

 

 background-color: green; 設定背景顏色
background:transparent; 設定背景為透明
color:rgb(241, 70, 62); 設定前景顏色
selection-color:rgb(241, 70, 62); 用來設定選中時候的顏色

相關文章