Ray FAN's blog
ielnaf
全部博文(27)
2011年(1)
2010年(4)
2009年(4)
2008年(18)
yejia805
身为小白
z6515005
梦醒四点
flyingpe
souldazy
KD_holme
fender01
NCPIRO
分类:
2008-08-07 14:10:56
#include <QApplication> #include <QHBoxLayout> #include <QSlider> #include <QSpinBox> int main(int argc, char *argv[]) { QApplication app(argc, argv); QWidget *window = new QWidget; window->setWindowTitle("Enter Your Age"); QSpinBox *spinBox = new QSpinBox; QSlider *slider = new QSlider(Qt::Horizontal); spinBox->setRange(0, 130); slider->setRange(0, 130); QObject::connect(spinBox, SIGNAL(valueChanged(int)), slider, SLOT(setValue(int))); QObject::connect(slider, SIGNAL(valueChanged(int)), spinBox, SLOT(setValue(int))); spinBox->setValue(35); QHBoxLayout *layout = new QHBoxLayout; layout->addWidget(spinBox); layout->addWidget(slider); window->setLayout(layout); window->show(); return app.exec(); }
使用了spin和slider控件
结果如图所示:
上一篇:Qt4.4 学习笔记(二) Making Connections(连接器)
下一篇:windows与linux下的路径区别
登录 注册