zoukankan      html  css  js  c++  java
  • 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),则是根据指定的控件来设定焦点的位置.

  • 相关阅读:
    MGR
    复制参数优化
    mysql复制
    sysbench
    mysql 用户及权限
    MySQL多实例安装
    PHP常用数组函数
    AJAX传递数据的两种编码x-www-form-urlencoded与json的区别
    使用PHP操作文件
    var_dump和var_export区别
  • 原文地址:https://www.cnblogs.com/lujin49/p/4718671.html
Copyright © 2011-2022 走看看