如何创建具有多种颜色的qt QTButton?
how to create a qt QTButton with multiple colors?
我正在寻找如何在背景颜色中创建具有多种颜色的 QT 按钮。
按钮应如下所示
使用渐变:
button->setStyleSheet(R"(
background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgba(255, 0, 102, 255), stop:0.55 rgba(0, 148, 61, 255), stop:0.98 rgba(0, 255, 0, 255), stop:1 rgba(0, 0, 0, 0));
border-radius: 10px;
)");
我正在寻找如何在背景颜色中创建具有多种颜色的 QT 按钮。
按钮应如下所示
使用渐变:
button->setStyleSheet(R"(
background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgba(255, 0, 102, 255), stop:0.55 rgba(0, 148, 61, 255), stop:0.98 rgba(0, 255, 0, 255), stop:1 rgba(0, 0, 0, 0));
border-radius: 10px;
)");