QT小滑块
2011-11-24 19:22 Rollen Holt 阅读(2242) 评论(0) 收藏 举报主代码:
QWidget *window=new QWidget();
window->setWindowTitle("hello");
QSpinBox *spinBox=new QSpinBox();
QSlider *slider=new QSlider(Qt::Horizontal);
spinBox->setRange(100,1000);
slider->setRange(100,1000);
spinBox->setValue(100);
QObject::connect(slider,SIGNAL(valueChanged(int)),spinBox,SLOT(setValue(int)));
QObject::connect(spinBox,SIGNAL(valueChanged(int)),slider,SLOT(setValue(int)));
QHBoxLayout *layout=new QHBoxLayout();
layout->addWidget(spinBox);
layout->addWidget(slider);
window->setLayout(layout);
window->show();
return a.exec();
==============================================================================
本博客已经废弃,不在维护。新博客地址:http://wenchao.ren
我喜欢程序员,他们单纯、固执、容易体会到成就感;面对压力,能够挑灯夜战不眠不休;面对困难,能够迎难而上挑战自我。他
们也会感到困惑与傍徨,但每个程序员的心中都有一个比尔盖茨或是乔布斯的梦想“用智慧开创属于自己的事业”。我想说的是,其
实我是一个程序员
==============================================================================
浙公网安备 33010602011771号