I Прочитайте несколько потоков о том, как передавать данные из Workerthread в главное окно (Dialog), но я до сих пор не понимаю и все еще нуждаюсь в помощи. My workerthread должен обрабатывать некоторые вычисления и отображать результат в каждом цикле для редактирования в графическом интерфейсе. Я знаю, я должен использовать PostMessage, но так как расчет я делаю подразумевает элемент управления, я не знаю, как решить эту проблему ...MFC - Проводка данных через PostMessage в GUI
//CWorkerThreadMgr.h manages the second thread
HRESULT Start (HWND hWnd);// from where the workerthread will be started
HWND m_hWnd ; //Window handle to the UI ;
HANDLE m_hTread; //handle of the worker thread
static UINT WINAPI ThreadProc(LPVOID lptest);
static UINT WINAPI ThreadProc(LPVOID lptest)
{
CWorkerThreadMgr* pCalculateMgr = reinterpret_cast< CWorkerThreadMgr*(lptest);
//The following operation:rand() *m_Slider.GetPos() should
//should be calculated and the result displayed each time in the edit box in the gui
for(UINT uCount = 0; uCount < 40; uCount++){
pCalculateMgr->rand() *m_Slider.GetPos();//?don't allowed to touch the gui!!
PostMessage(pCalculateMgr-> m_hWnd, WM_SENDCALCULATED_VALUE,wparam(rand() *m_Slider.GetPos(),0);
}
}
LRESULT CStartCalculationDlg::OnSendCalculatedValue(WPARAM Result, LPARAM)
{
// The resut should be displayed in the edit box
m_Calculation.Format(_T("%d"),???);
SetDlgItemText(IDC_CALCULATION, m_Calculation);
return 1;
}
void CStartCalculationDlg::OnHScroll(UINT nSBCode, UINT nPos,CScrollBar* pScrollBar)
{
m_SliderValue.Format(_T("%d"),m_Slider.GetPos());
SetDlgItemText(IDC_SLIDER_VALUE,m_SliderValue);
}
// Implementation in the CStartCalculationDlg.h
CWorkerThreadMgr m_WorkerThreadMgr //instance of the WorkerThreadMgr
CSliderCtrl m_Slider //member variable of the slider control
CString m_SliderValue // member variable of the edit box, where the current value of the
//slider will be displayed
CString m_Calculation // member variable of the edit box where the calculated
//result from the workerthread will be displayed via PostMessage
afx_msg LRESULT OnSendCalculatedValue(WPARAM, LPARAM);
afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
Следующая probem является то, что, когда мой ползунком перемещается и получает новое значение, процедура потока должна знать об этом и обновлять значение ползунка. Как я могу это сделать?
Вы можете передать положение ползунка в качестве параметра в поток? – Jeeva