更新:可能的解决方案。在标题中声明 CWait 对话框似乎可以解决这个问题。
UPDATE2:消息泵可能是罪魁祸首。明确的“抽水”似乎可以解决问题。
我试图在应用程序中执行某些功能时显示模式“请稍候”对话框。我要显示的对话框是这样的:
我使用此代码来调用对话框。
CWait dialog;
dialog.Create(IDD_WAIT);
dialog.SetWindowTextW(L"Geocoding");
dialog.ShowWindow(SW_SHOW);
mastImageGeocode(); //Working here
slvImageGeocode();
interfImageGeocode();
cohImageGeocode();
dialog.CloseWindow();
最终显示的是这样的:
我似乎无法弄清楚为什么控件不呈现。
我尝试在使用这种方法初始化对话框后手动处理消息循环:
MSG stMsg;
while (::PeekMessage (&stMsg, NULL, 0, 0, PM_REMOVE))
{
::TranslateMessage (&stMsg);
::DispatchMessage (&stMsg);
}
并没有真正起作用。
我也尝试过指针方法
Cwait * dialog; //THis is in header
dialog = new CWait(this);
dialog->Create(IDD_WAIT);
dialog->SetWindowTextW(L"Geocoding");
dialog->ShowWindow(SW_SHOW);
mastImageGeocode(); //Some work here
slvImageGeocode();
interfImageGeocode();
cohImageGeocode();
dialog->CloseWindow();
delete dialog;
难道我做错了什么。
谢谢您的帮助。
更新:如果我在单个函数中调用它,它工作正常!