我不知道当我们输入文本框时文本框如何只接受字符和空格。我只是认为我们可以使用 WM_Keydown 但我只是猜它不知道我们输入哪个编辑控件。这是我创建表单的代码
void CREATE_EDITNAMECONTROL()
Create_Control( hNameEditControl, /* Handle */
NULL,//NULL, /* Handle of parent */
L"Edit", /* class name */
ID_EDIT_CONTROl , /* ID */
L"", /* Caption/Title */
EDITCONTROL_STYLE, /* Style */
200, /* Position X */
70, /* Position Y */
160, /* Width */
30 ); /* Height */
无效 CREATE_EDITDATECONTROL()
Create_Control( hDateEditControl, /* Handle */
NULL,//NULL, /* Handle of parent */
L"Edit", /* class name */
ID_EDIT_CONTROl , /* ID */
L"", /* Caption/Title */
EDITCONTROL_STYLE, /* Style */
200, /* Position X */
110, /* Position Y */
160, /* Width */
30 ); /* Height */