考虑到本地化,将属性表上的IDCANCEL按钮更改为IDCLOSE按钮

时间:2018-11-09 11:38:25

标签: propertysheet

这听起来像是一个愚蠢的问题。我知道CMFCPropertyPage有一个CancelToClose方法,但找不到工作表对象的类似方法。

我基本上希望“取消”按钮一直处于“关闭”状态,并希望在工作表对象中执行该操作。

在每个页面中调用CancelToClose是唯一的方法吗?

我读了this,现在意识到无论如何我都不想要。

这就是我想要在工作表上显示的内容

  1. 自定义预览按钮。
  2. 一个关闭按钮。

预览按钮将位于关闭按钮的左侧。我找到了有关添加自定义按钮的教程。

对于“关闭”按钮,我不确定该怎么做。

更新

所以,目前我有:

Sheet

因此它具有自定义按钮(现有隐藏的IDOK按钮所在的位置)。它具有IDCANCEL按钮。但我希望按钮为“关闭”。

我知道我可以使用SetWindowText,但是我正在考虑本地化,所以我想知道最好的方法是什么。

1 个答案:

答案 0 :(得分:0)

这就是我最终解决此问题的方式。我现在从CMFCPropertySheet::OnInitDialog()调用此代码:

void CVisitsRotaPropertySheet::SetupButtons()
{
    CRect rctOK, rctCancel;
    CString strButtonText;

    // Get the position if the IDOK button
    GetDlgItem(IDOK)->GetWindowRect(rctOK);
    ScreenToClient(rctOK);

    // Get the position of the IDCANCEL button
    GetDlgItem(IDCANCEL)->GetWindowRect(rctCancel);
    ScreenToClient(rctCancel);

    // Hide the IDCANCEL button
    GetDlgItem(IDCANCEL)->ShowWindow(SW_HIDE);

    // Move the IDOK button to be in the same place as the IDCANCEL button
    GetDlgItem(IDOK)->MoveWindow(rctCancel);

    // Create the PREVIEW button in the original location of the IDOK button
    ENSURE(strButtonText.LoadString(IDS_STR_PREVIEW));
    m_btnPreview.Create(strButtonText,
        BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, rctOK, this, IDC_BUTTON_PREVIEW);
    m_btnPreview.SetFont(GetFont());
}

上面的代码根据需要调整按钮。然后,在我的CMFCPropertyPage::OnInitDialog()处理程序中,我调用CancelToClose()

结果:

With custom buttons