Qt QSS大坑 ~ text-align

学过Qt的小伙伴肯定都知道 QSS就是从CSS过来,很多语法都是一模一样,直接进入正题。

文本显示居中,相信大家都遇到过这问题 解决方式一般来说两种:

(1)setAlignment(Qt::AlignHCenter); Qt提供的函数

(2)QSS ;这个是真的爽,谁用谁知道。

第一个没什么说的,直接开始第二个:是不是很多人都发现 QSS 有时候管用有时候失效。。。。

这个坑,不知道怎么爬出来,是不是,以前博主没怎么研究过,今天有时间特地的看了下 QSS。

在我使用 QSS 的 text-align: 对文本进行设定的时候 死活失效,砸机制的冲动都有了(但是咱不能真的砸,毕竟是公司的赔不起!)

没办法  万事从头开始既然qss是Qt自己做出来的总有一个手册看看是吧——assistant:

果然 不负众望:在Qt Style Sheets Reference 中找到了他

 

text-align    Alignment    The alignment of text and icon within the contents of the widget.
If this value is not specified, it defaults to the value that depends on the native style.
Example:
 QPushButton {
     text-align: left;
 }
This property is currently supported only by QPushButton and QProgressBar.

这段话的意思就是text-align 可以设置文本和ICON的位置,

但是!!! 最关键的话在下面 这个当前只支持 QPushButton and QProgressBar

也就是说没得玩,别和他整这些花里胡哨的东西,老实一点直接用 setAlignment(Qt::AlignHCenter) 你值得拥有

 

 

 

 

 

 

 

 

你可能感兴趣的:(Qt,经验心得)