Getting the size of a minimized window

前端 未结 2 1385
小鲜肉
小鲜肉 2021-01-14 16:21

I never knew this, but apparently:

By default, the system reduces a minimized window to the size of its taskbar button and moves the minimized w

相关标签:
2条回答
  • 2021-01-14 17:01

    Handle WM_SIZE message. If wParam is not SIZE_MAXIMIZED or SIZE_MINIMIZED, keep window size and position in some varibles. Use these variables when window is closed.

    0 讨论(0)
  • 2021-01-14 17:23

    How about using GetWindowPlacement? That returns a WINDOWPLACEMENT structure that contains information about the window's coordinates in the restored position.

    Remember that (as Leo Davidson points out in the comments) that you must respect the difference between workspace and screen coordinates. As the WINDOWPLACEMENT documentation explains:

    The coordinates used in a WINDOWPLACEMENT structure should be used only by the GetWindowPlacement and SetWindowPlacement functions. Passing workspace coordinates to functions which expect screen coordinates (such as SetWindowPos) will result in the window appearing in the wrong location. For example, if the taskbar is at the top of the screen, saving window coordinates using GetWindowPlacement and restoring them using SetWindowPos causes the window to appear to "creep" up the screen.

    Or, the simpler solution that I've no doubt used before is just to check if the window is minimized before saving the state, and if it is, skip saving any state information.


    As far as explaining why a window changes its size when it gets minimized, Raymond Chen's blog entry (and the linked entry as well) on the subject is mandatory reading. They don't really change to their taskbar button's size, but rather to a pre-defined size of 160x31. He explains that you can see this by minimizing a MDI child window into its parent—that's really its size.

    0 讨论(0)
提交回复
热议问题