zoukankan      html  css  js  c++  java
  • 【Demo 0035】获取窗体状态

    本章学习内容非常少就一个API(GetWindowPlacement)

    1. 代码演示

    //////////////////////////////////////////////////////////////////////////
    BOOL CALLBACK WndEnumProc(HWND hWnd, LPARAM lParam)
    {
        HWND hListbox = (HWND)lParam;
        if (NULL == hWnd)    return FALSE;

        if (NULL != hListbox && IsWindow(hListbox) && IsWindowVisible(hWnd))
        {
            TCHAR szWndInfo[512]    = {0};
            TCHAR szWndTitle[256]    = {0};
            TCHAR szClsName[64]        = {0};
            WINDOWPLACEMENT wp        = {0};
            wp.flags                = 0;
            wp.length                = sizeof(wp);

            RECT rtWnd, rtClient;
            GetWindowRect(hWnd, &rtWnd);
            GetClientRect(hWnd, &rtClient);
            GetWindowText(hWnd, szWndTitle, 256);
            GetClassName(hWnd, szClsName, 64);
            GetWindowPlacement(hWnd, &wp);
            _stprintf(szWndInfo,
                      _T("\"%s\"")
                      _T("  %d ")
                      _T("wnd[%d,%d,%d,%d], client[%d,%d,%d,%d], normal[%d,%d,%d,%d] min[%d, %d] max[%d, %d]"),
                      szWndTitle,
                      wp.showCmd,
                      rtWnd.left, rtWnd.top, rtWnd.right, rtWnd.bottom,
                      rtClient.left, rtClient.top, rtClient.right, rtClient.bottom,
                      wp.rcNormalPosition.left, wp.rcNormalPosition.top, wp.rcNormalPosition.right, wp.rcNormalPosition.bottom,
                      wp.ptMinPosition.x, wp.ptMinPosition.y,
                      wp.ptMaxPosition.x, wp.ptMaxPosition.y);
            SendMessage(hListbox, LB_ADDSTRING, 0, (LPARAM)szWndInfo);
        }

        return TRUE;
    }

    2.  BOOL GetWindowPlacement(HWND hWnd, WINDOWPLACEMENT *lpwndpl )

         功能: 该函数返回指定窗口的显示状态以及被恢复的、最大化的和最小化的窗口位置

    typedef struct _WINDOWPLACEMENT {
          UINT length;
          UINT flags;
          UINT showCmd;
          POINT ptMinPosition;
          POINT ptMaxPosition;
          RECT rcNormalPosition;
       } WINDOWPLACEMENT;
    返回值说明: 
    showCmd – 直接COPY MSDN
            SW_HIDE
    Hides the window and activates another window.
      SW_MAXIMIZE
    Maximizes the specified window.
      SW_MINIMIZE
    Minimizes the specified window and activates the next top-level window in the z-order.
      SW_RESTORE
    Activates and displays the window. If the window is minimized or maximized, the system restores it to its original size and position.
    An application should specify this flag when restoring a minimized window.
      SW_SHOW
    Activates the window and displays it in its current size and position.
      SW_SHOWMAXIMIZED
    Activates the window and displays it as a maximized window.
      SW_SHOWMINIMIZED
    Activates the window and displays it as a minimized window.
      SW_SHOWMINNOACTIVE
    Displays the window as a minimized window.

                 This value is similar to SW_SHOWMINIMIZED, except the window is not activated.

      SW_SHOWNA
    Displays the window in its current size and position. 

                  This value is similar to SW_SHOW, except the window is not activated.

      SW_SHOWNOACTIVATE
    Displays a window in its most recent size and position.

                  This value is similar to SW_SHOWNORMAL, except the window is not actived.

      SW_SHOWNORMAL
     
    演示代码
  • 相关阅读:
    从官网下载mod_jk.so
    一台电脑上运行两个tomcat
    官网下载apache服务器并运行
    给tomcat7w.exe改名字
    运行tomcat7w.exe,提示:指定的服务未安装unable to open the service tomcat7
    一台电脑启动多个tomcat
    Spring和Hibernate结合的一个小例子
    spring和jdbc结合的一个小例子
    svn 文件后面显示时间和提交人
    svn 未提交的显示黑色的星*
  • 原文地址:https://www.cnblogs.com/ztercel/p/2155197.html
Copyright © 2011-2022 走看看