有条件地阻止 CPropertySheet 从页面 OnOK 按钮处理程序关闭

Conditionally stopping a CPropertySheet from closing from the page OnOK button handler

我刚刚遇到 CPropertyPage 的问题。

我一直在尝试使用 OnOK 处理程序进行一些验证:

void CCalendarSettingsGooglePage::OnOK()
{
    bool bHandle = false;

    UpdateData(TRUE);

    // AJT v20.2.0 — We need to pass "true" so that the error message will display!
    if (ValidSettings(true))
    {
        bHandle = true;
        SaveSettings();
    }

    if (bHandle)
        CMFCPropertyPage::OnOK();
}

问题是,sheet 仍然关闭。我曾希望阻止 CMFCPropertyPage::OnOK 会阻止 sheet 关闭。但事实并非如此。

我从 了解到 sheet 的 OnOK 正在拨打 EndDialog(IDOK) 电话。但我不想让我的 sheet 复杂化。测试在此页面中。所以我需要一个 was 让 sheet 知道当用户单击“确定”按钮时它是否应该关闭。

您需要覆盖 属性 页面父级 属性 sheet class 的 OnCommand 处理程序并拦截 IDOK 命令的点击(将在 wParam 参数中给出)。如果你调用基础classOnCommand仍然returnTRUE表明你已经处理了命令,那么 属性 sheet 将不会关闭:

BOOL MyPropertySheet::OnCommand(WPARAM wParam, LPARAM lParam)
{
    if (wParam == IDOK) { // OK button clicked...
        if (!ValidSettings(true)) return TRUE; // NOT valid, prevent further processing.
    }
    // You can also intercept the "Apply" command by testing for ID_APPLY_NOW

    // Everything is OK, so continue processing ...
    return CMFCPropertySheet::OnCommand(wParam, lParam);
}

请注意,我假设您的父级派生自 CMFCPropertySheet,但同样适用于 'older' CPropertySheet