赞
踩
QProgressbar *progressBar = new QProgressBar(this);
progressBar->setMinimum(0);
progressBar->setMaximum(100);
progressBar->setValue(30);
//progressBar->setTextVisible(false); //不显示百分比文字,默认显示
progressBar->setAlignment(Qt::AlignHCenter); //百分比文字显示位置在进度条中间。默认是现在进度条的右边,Qt::AlignLeft 和 Qt::AlignRight不起作用。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。