日本語のみで絞り込む

2010/11/9 -I have a custom dialog that has been created from the application's resource file (designed with the Visual Studio 6 dialog designer), and I ...

2008/4/26 -For easiness, I've implemented it in MFC. Modify the message map as follows. BEGIN_MESSAGE_MAP(CDialogDlg, CDialog) ... ON_WM_GETMINMAXINFO ...

2004/11/21 -go back to 'Message Maps', select your CDialog-derived class in 'Object IDs' list and then 'WM_GETMINMAXINFO' from the messages list. Q: My ...

2023/2/14 -// CModeless is a CDialog class representing a modeless dialog ... WM_GETMINMAXINFO message to the window. This ... (If the Cancel button is clicked ...

2021/1/7 -A pointer to a MINMAXINFO structure that contains the default maximized position and dimensions, and the default minimum and maximum tracking ...

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).

2011/6/19 -It is important to realize that during the window creation process, WM_GETMINMAXINFO can be issued, perhaps several times. ... CDialog::OnSize( ...

In this article, we'll show you how to let users resize your application's client window but limit how much they can stretch or shrink the window. To do so, we' ...

2008/8/20 -You can do it by handling – WM_GETMINMAXINFO message. ... Have a look at the code snippet. // Message map BEGIN_MESSAGE_MAP(CRabbitDlg, CDialog) .

How to change the caption of a dialog box dynamically? Answer, Re: change the caption of dialog box dynamically ... Re: WM_GETMINMAXINFO and wrapping windows Pin.