任务管理器源代码



有点像微软的源码,我也不清楚!反正不错了.<br><br><br>INT_PTR CALLBACK MainWindowProc(<br> HWND hwnd, // handle to dialog box<br> UINT uMsg, // message<br> WPARAM wParam, // first message parameter<br> LPARAM lParam // second message parameter<br> )<br>{<br> static BOOL fIsHidden = FALSE;<br><br> // If this is a size or a move, update the position in the user's options<br><br> if (uMsg == WM_SIZE || uMsg == WM_MOVE)<br> {<br> // We don't want to start recording the window pos until we've had<br> // a chance to set it to the intialial position, or we'll lose the<br> // user's preferences<br><br> if (fAlreadySetPos)<br> if (!IsIconic(hwnd) && !IsZoomed(hwnd))<br> GetWindowRect(hwnd, &g_Options.m_rcWindow);<br> }<br>













