VC++ 如何在显示对话框的时候,指定焦点控件!

很简单:

在你的CAddDlg类的OnInitDialog函数中
加上你上面的代码
GetDlgItem(IDC_EDIT1)->SetFocus();
最后记得return FALSE;

其实,不知道返回FALSE是啥意思!

查了说明:

Return Value
Specifies whether the application has set the input focus to one of the controls in the dialog box.

If OnInitDialog returns nonzero, Windows sets the input focus to the first control in the dialog box. 

The application can return 0 only if it has explicitly set the input focus to one of the controls in the dialog box.

翻译一下,大概的意思是

返回值 是确定对话框在打开的时候,对话框焦点的位置.

如果返回为非零(TRUE),但指定对话框在打开的时候,焦点位于第一个控件上.

如果返回值为零(FALSE),则是根据指定的控件来设定焦点的位置.

原文地址:https://www.cnblogs.com/lujin49/p/4718671.html