看板 C_and_CPP 關於我們 聯絡資訊
開發平台(Platform): (Ex: VC++, GCC, Linux, ...) VC6 MFC 問題(Question): 先Create出一個視窗, 之後進行某些操作時會需要得知此視窗是正在顯示(SW_SHOW), 或者已被使用者關閉(SW_HIDE), 要分辨這兩種情形來對應到不同的動作。 謝謝~ ------------------------------------ 試過j大提的函式, TestDialogSH* ptr = new TestDialogSH; ptr->Create(IDD_DIALOG_SH); WINDOWPLACEMENT WinPlace; CString str; ptr->GetWindowPlacement(&WinPlace); str.Format("%d",WinPlace.showCmd); AfxMessageBox(str); ptr->ShowWindow(SW_SHOW); ptr->GetWindowPlacement(&WinPlace); str.Format("%d",WinPlace.showCmd); AfxMessageBox(str); ptr->ShowWindow(SW_HIDE); ptr->GetWindowPlacement(&WinPlace); str.Format("%d",WinPlace.showCmd); AfxMessageBox(str); 然而三次Afx跳出來都是1... 我有查找一下,在Platform SDK裡面定義的GetWindowPlacement是這樣寫的: The flags member of WINDOWPLACEMENT retrieved by this function is always zero. If the window identified by the hWnd parameter is maximized, the showCmd member is SW_SHOWMAXIMIZED. If the window is minimized, showCmd is SW_SHOWMINIMIZED. Otherwise, it is SW_SHOWNORMAL. 照他這樣寫是只有三種值, 還是我不知道Call到哪去了?? 有請大神開示.. -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 114.34.227.117 ※ 編輯: PTTSuck 來自: 114.34.227.117 (03/04 11:55)
jhchou:GetWindowPlacement 03/04 12:01
※ 編輯: PTTSuck 來自: 114.34.227.117 (03/04 15:46)
jhchou:不然用IsWindowVisable試試 03/04 16:48