关于OK,X ---Windows mobile窗体

关于OK,X ---Windows mobile窗体----纯粹是作为笔记
2009年03月04日 星期三 14:58

To prevent Smart Minimize and OK buttons from appearing on title bar of dialog boxes

  1. Manually edit the resource (.rc) file for the dialog box. Add WS_NONAVDONEBUTTON to the STYLE line to prevent the display of the Smart Minimize button, as shown:
    //
    // Dialog.
    //
    IDD_WIZARD DIALOG DISCARDABLE 0, 0, 140, 57
    STYLE WS_POPUP | WS_CAPTION | WS_NONAVDONEBUTTON
    EXSTYLE 0x80000000L
    CAPTION "Your Wizard"
  2. Remove SHDIF_DONEBUTTON from the dwFlags member of the SHINITDLGINFO user interface structure (generally found in the WM_INITDIALOG message handler for the dialog box) to remove the OK button from the title bar, as follows:
    SHINITDLGINFO shidi;
    switch (message)
    {
    case WM_INITDIALOG:
    shidi.dwMask = SHIDIM_FLAGS;
    shidi.dwFlags = SHIDIF_SIZEDLGFULLSCREEN;
    shidi.hDlg = hDlg;
    if (!SHInitDialog(&shidi)) {
    MessageBox(NULL, _T("Can't create dialog box."),
    _T("Error"), MB_OK);
    exit(0); // Replace with specific error handling.
    }
    .
    .
    .
  3. Add a call to the SHDoneButton function with the SHDB_HIDE state after calling the SHInitDialog function to hide the OK button, as follows:
    if (!SHDoneButton(hDlg, SHDB_HIDE)) {
    MessageBox(NULL, _T("Can't hide the OK button."),
    _T("Error"), MB_OK);
    exit(0); // Replace with specific error handling.
    }
  4. If you run the code as is, no Smart Minimize button or OK button appears on the title bar, but tapping the Enter key in the emulator or on the input panel keyboard closes the dialog box. If this is not the desired behavior, make the appropriate changes to the WM_COMMAND message handler. Generally, you want to set focus to the default control in the current panel of your wizard.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值