how to find a window's SW_SHOW/SW_HIDE status

百般思念 提交于 2019-11-30 14:43:41

问题


I am trying to determine a window control's visibility that has been hidden or enabled with CWnd::ShowWindow(). (or ::ShowWindow(hWnd,nCmdShow))

I cannot simply use ::IsWindowVisible(hWnd) as the control is on a tab sheet, which may itself be switched out, causing IsWindowVisible to return FALSE.

Is there a way to get the SW_SHOW/HIDE (or others) window status or do I need to use the retun value of ShowWindow() and reset accordingly?

edit: as the control is enabled (or disabled) to show, but may not be currently visible, as the tab is switched ot, I would think that it's SW_SHOW status would remain the same, even if the window itself is not actually switched in. If I'm unrealistic in my expectations that that's fine.

So really I'm looking for 'can this window/control be shown'


回答1:


Use GetWindowPlacement. It fills WINDOWPLACEMENT structure, which has field showCmd.

showCmd
Specifies the current show state of the window. This member can be one of the following values.




回答2:


Call GetWindowLong( handle, GWL_STYLE), check the returned value for WS_VISIBLE style presence.




回答3:


I would use GetWindowPlacement, however I am not sure if I understood what you want. It fills in a WINDOWPLACEMENT structure and then use the showCmd member.




回答4:


GetWindowPlacement() function will work only if the window is maximized or minimized. Otherwise, showCmd member will return SW_SHOWNORMAL also when window is hidden, as pointed out in this StackOverflow answer: WINDOWPLACEMENT's showCmd... always 1?

You can use the more straightforward boolean function IsWindowVisible() to get if the specified Window is in a visible state or not.




回答5:


If it is a multi-tab dialog and not a control, then override as

void MyClass::OnShowWindow(BOOL bShow, UINT nStatus)
{
    m_nCmdShow = bShow;
    CDialog::OnShowWindow(bShow, nStatus);
}

In BEGIN_MESSAGE_MAP, add ON_WM_SHOWWINDOW().

m_nCmdShow now has the status if the window is SW_SHOW or SW_HIDE.




回答6:


I don't know if there is a proper method for this task but I would try WindowFromPoint Function.

Remarks

The WindowFromPoint function does not retrieve a handle to a hidden or disabled window, even if the point is within the window. An application should use the ChildWindowFromPoint function for a nonrestrictive search.

For example I would convert control's corner coords into screen coords and then try to get it's handle from those points.



来源:https://stackoverflow.com/questions/1432336/how-to-find-a-windows-sw-show-sw-hide-status

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!