QToolTip样式表

当我们把鼠标放到QLabel,QPushButton等控件上面时,会出现提示语,这个提示语就是QToolTip;

想要出现提示语需要调用对应控件的setToolTip函数;

QToolTip的样式设置和QLabel保持一致;但QToolTip无法做到背景透明,也无法改变形状,如果设置背景为transparent透明时,默认会添加黑色背景;设置圆角半径时,改变的只是内部的圆角半径;

 

QToolTip{

//设置字体样式

font-family: "Microsoft YaHei";//字体类型

font-size: 25px;//字体大小,像素

font-style: italic;//字体斜体样式,mormal不斜体

font-weight:bold;//字体加粗样式,mormal不加粗

color: #bdc8e2//字体颜色

 

font: bold italic 18px "Microsoft YaHei";//顺序要求:style weight size family 或者 weight style  size family

//文字位置

padding-left: 10px;距离左边边界的距离

padding-top: 10px;距离顶边边界的距离

padding-right: 10px;距离右边边界的距离

padding-bottom: 10px;距离底边边界的距离

 

//边框样式

border-style: solid;//边框样式,实线:solid ;虚线:dashed; 点线:dotted;

不显示(默认):none;

border-width: 2px;

border-color: red;

 

border:2px,solid red;//同时设置

 

//某一条边框(其他三个边框: right,bottom,left)

border-top-style:solid;

border-top-width:2px;

border-top-color:red;

 

//圆角

border-top-left-radius:20px;//左上角弧度

border-top-right-radius:20px;//右上角弧度

border-bottom-left-radius:20px;//左下角弧度

border-bottom-right-radius:20px;//右下角弧度

 

bordet-radius:20px;//同时设置4个角的弧度

 

//背景样式

background-color:rgba(r,g,b,a);//值transparent为透明

background-image:url(".png");//背景图片

background-repeat:no-repeat;//在x轴重复:repeat-x; 在y轴重复:repeat-y

background-position:left center;//图片显示位置:left,right,center,top,bottom;

 

background: url(".png") no-repeat left center #2e3648;//顺序任意

}

 

 

 

发布了104 篇原创文章 · 获赞 22 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/qq_41672557/article/details/103285121