在我的项目中,我需要在我的 Mfc 应用程序顶部创建一个非阻塞 QWizard。为此,我按照此处的说明进行操作(链接)
这样做有一个奇怪的副作用,当我单击 QWizardPage 中的 QRadioButton 时,我的 UI 似乎没有正确更新。请参阅以下屏幕截图:
1-我的 QWizard 的第一步。一切看起来都不错
2-我点击了一个 QRadioButton。看,“下一步”按钮处于奇怪的状态。
3-我点击了第二个 QRadioButton。看,两个 QRadioButton 看起来都被选中了。(是的,它们是互斥的!
4-现在,如果我在“鼠标悬停”、“下一步”按钮和 QRadioButton 上进行操作,这会强制更新,我的用户界面很好
我的问题是:使用 show 而不是 exec 时如何正确更新我的 UI?(我确实尝试使用 exec 并且我的 UI 正在正确更新)
我猜如果我使用 show,主线程不会更新我的 UI?
谢谢你。
编辑
这是实例化向导的函数的代码:
void QtMfcFacade::startDevicesConfigurationWizard(HWND hWnd)
{
QWinWidget* win = new QWinWidget( hWnd );
win->showCentered();
DevicesConfigurationWizard *devicesConfigurationWizardUI = new DevicesConfigurationWizard(win);
devicesConfigurationWizardUI->setModal(true);
devicesConfigurationWizardUI->show();
}
以下是我的 QWizard 课程:
DevicesConfigurationWizard::DevicesConfigurationWizard(QWidget *parent, Qt::WFlags flags)
: QWizard(parent, flags),
{
ui.setupUi(this);
this->setWindowFlags( ( (this->windowFlags() | Qt::CustomizeWindowHint)
& ~Qt::WindowCloseButtonHint & ~Qt::WindowContextHelpButtonHint) );
this->setAttribute( Qt::WA_DeleteOnClose, true );
connect(this, SIGNAL(currentIdChanged(int)), this, SLOT(onClick(int)));
}
void DevicesConfigurationWizard::onClick(int pageId)
{
if (m_currentPageId < pageId)
{
//user clicked next button.
switch (pageId)
{
case PAGE_NUMBER_SINGLE_USER:
{
setupSingleUserPage();
break;
}
default :
{
//problem!!!
}
}
m_currentPageId = pageId;
}
}
void DevicesConfigurationWizard::onRadioButtonClick()
{
this->button(this->NextButton)->setEnabled(true);
this->button(this->FinishButton)->setEnabled(true);
}
void DevicesConfigurationWizard::setupSingleUserPage()
{
this->button(this->NextButton)->setEnabled(false);
int newPositionY = 0;
QVBoxLayout* layout = ui.wpSINGLE_USER->findChild<QVBoxLayout*>("verticalLayout");
for (vector<Events::VCS::PnPDevice>::const_iterator it=m_devices.begin(); it!=m_devices.end(); it++)
{
if (it->type == Events::VCS::HEADSET)
{
//add a radio button
stringstream text;
text << (it->name) << " " << (it->serialNumber) ;
QRadioButton* radioButton = new QRadioButton(this->ui.wpSINGLE_USER);
radioButton->setGeometry(X, Y + newPositionY, WIDHT, HEIGHT);
radioButton->setText(text.str().c_str());
radioButton->setIconSize(QSize(HEIGHT,HEIGHT));
newPositionY = newPositionY + HEIGHT;
layout->insertWidget(0, radioButton);
connect(radioButton, SIGNAL(clicked()), this, SLOT(onRadioButtonClick()));
}
}
}
编辑试图强制更新到目前为止没有解决问题
void DevicesConfigurationWizard::onRadioButtonClick()
{
this->button(this->NextButton)->setEnabled(true);
this->button(this->FinishButton)->setEnabled(true);
QWidget::update();
this->update();
this->button(this->NextButton)->update();
QList<QRadioButton*> listButton = ui.wpSINGLE_USER->findChildren<QRadioButton*>();
listButton[0]->update();
listButton[1]->update();
QApplication::processEvents();
}