• Qt 【关于控件样式,鼠标进入、离开、点击】


    比如举以下这个例子:

    QPushButton * okBtn;

    okBtn->setstylesheet("QPushButton{border-image:url(:/image/hello);}");             //这个是最常规的样式

    okBtn->setstylesheet("QPushButton{border-image:url(:/image/hello);}"               //常规的样式

                                   "QPushButton:hover{border-image:url(:/image/hello);}");   //鼠标进入后Btn的样式

    okBtn->setstylesheet("QPushButton{border-image:url(:/image/hello);}"               //常规的样式

                                   "QPushButton:hover{border-image:url(:/image/hello);}"      //鼠标进入后Btn的样式

                                   "QPushButton:pressed{border-image:url(:/image/hello);}" );  //鼠标点击的样式

    注意这里的 位置是固定的不能随意改变,更改hover与pressed的位置会导致样式设置失败,可以少写一个样式如第二步,但是不能多写或者打乱顺序。

  • 相关阅读:
    Delphi播放铃声
    小技巧
    Delphi线程中使用waitfor返回值
    window安装、启动consul
    kali2020-bash: openvas-setup:未找到命令 ,解决办法
    zookeeper 客户端
    redis 集群
    activeMQ
    Shiro
    Eclipse Java注释模板设置详解
  • 原文地址:https://www.cnblogs.com/liuruoqian/p/5416669.html
Copyright © 2020-2023  润新知