• 1252阅读
  • 1回复

[提问]QDateEdit或者QSpinBox右边的两按钮可以替换成图片吗? [复制链接]

上一主题 下一主题
离线zx12345
 

只看楼主 倒序阅读 楼主  发表于: 2021-03-16
如上
离线nigoole

只看该作者 1楼 发表于: 2021-03-17
  1. QSpinBox {
  2.       padding-right: 15px; /* make room for the arrows */
  3.       border-image: url(:/images/frame.png) 4;
  4.       border-width: 3;
  5.   }
  6.   QSpinBox::up-button {
  7.       subcontrol-origin: border;
  8.       subcontrol-position: top right; /* position at the top right corner */
  9.       width: 16px; /* 16 + 2*1px border-width = 15px padding + 3px parent border */
  10.       border-image: url(:/images/spinup.png) 1;
  11.       border-width: 1px;
  12.   }
  13.   QSpinBox::up-button:hover {
  14.       border-image: url(:/images/spinup_hover.png) 1;
  15.   }
  16.   QSpinBox::up-button:pressed {
  17.       border-image: url(:/images/spinup_pressed.png) 1;
  18.   }
  19.   QSpinBox::up-arrow {
  20.       image: url(:/images/up_arrow.png);
  21.       width: 7px;
  22.       height: 7px;
  23.   }
  24.   QSpinBox::up-arrow:disabled, QSpinBox::up-arrow:off { /* off state when value is max */
  25.      image: url(:/images/up_arrow_disabled.png);
  26.   }
  27.   QSpinBox::down-button {
  28.       subcontrol-origin: border;
  29.       subcontrol-position: bottom right; /* position at bottom right corner */
  30.       width: 16px;
  31.       border-image: url(:/images/spindown.png) 1;
  32.       border-width: 1px;
  33.       border-top-width: 0;
  34.   }
  35.   QSpinBox::down-button:hover {
  36.       border-image: url(:/images/spindown_hover.png) 1;
  37.   }
  38.   QSpinBox::down-button:pressed {
  39.       border-image: url(:/images/spindown_pressed.png) 1;
  40.   }
  41.   QSpinBox::down-arrow {
  42.       image: url(:/images/down_arrow.png);
  43.       width: 7px;
  44.       height: 7px;
  45.   }
  46.   QSpinBox::down-arrow:disabled,
  47.   QSpinBox::down-arrow:off { /* off state when value in min */
  48.      image: url(:/images/down_arrow_disabled.png);
  49.   }

有句话说得好:好好学习,天天向上。加油~~!有上船的朋友联系企鹅393320854
快速回复
限100 字节
 
上一个 下一个