Skip to content

Instantly share code, notes, and snippets.

@wengxt
Created July 16, 2014 09:31
Show Gist options
  • Save wengxt/224766ef6268f1797c11 to your computer and use it in GitHub Desktop.
Save wengxt/224766ef6268f1797c11 to your computer and use it in GitHub Desktop.
slider and stylesheet
#include "mainwindow.h"
#include <QSlider>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent)
{
setStyleSheet("QSlider::handle:horizontal {"
"background-image: url(/usr/share/wallpapers/stripes.png);"
"}");
QSlider *slider = new QSlider(Qt::Horizontal, this);
setCentralWidget(slider);
}
MainWindow::~MainWindow()
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment