約2,120件1ページ目

日本語のみで絞り込む

2010/11/9 -An application can use this message to override the window's default maximized size and position, or its default minimum or maximum tracking size.

2021/1/7 -Sent to a window when the size or position of the window is about to change. An application can use this message to override the window's default maximized ...

2008/4/26 -You can utilize the message – WM_GETMINMAXINFO. This message is sent to the dialog to get the minimum and maximum window size.

2004/11/21 -Q: My resizable window is a dialog and I do not see 'WM_GETMINMAXINFO' in the messages list of ClassWizard. What can I do?

2023/2/14 -// CModeless is a CDialog class representing a modeless dialog ... WM_GETMINMAXINFO message to the window. This is done to validate the new ...

2011/6/19 -It is important to realize that during the window creation process, WM_GETMINMAXINFO can be issued, perhaps several times. At least one of ...

Why do you want to handle it in the first place? What are you trying to achive that the default-implementation does not do?

2008/8/20 -Its a master piece of QA team to make the dialog look weired. Well how to prevent it? You can do it by handling – WM_GETMINMAXINFO message.

I have a form which is inherited from CDialog.It can be resizing. Now I want to set its minimum size (300, 200). It couldn't be smaller than (300, 200).

2019/10/23 -Sigh. So what went wrong? Debugging reveals the culprit: WM_GETMINMAXINFO. Any time Windows is about to size a window—whether because the user ...