This might sound like a dumb question. I know that CMFCPropertyPage
has a CancelToClose
method but I can't find similar for the sheet object.
I basically want the Cancel button to be "Close" at all times and was hoping to do it in the sheet object.
Is the only way to do this by calling CancelToClose
in each of the pages?
I read this and now realise it is not want I want anyway.
This is what I want on my sheet:
- A custom Preview button.
- A Close button.
The preview button will be to the left side of the close button. I have found a tutorial about adding a custom button.
For the Close button I am not sure what to do.
Update
So, at the moment I have:
So it has the custom button (where the existing hidden IDOK
button is located). And it has the IDCANCEL
button. But I want the button to be "Close".
I know I can use SetWindowText
but I am thinking about localization so I wondered what the best way is.
This is how I ended up resolving this issue. I now call this code from
CMFCPropertySheet::OnInitDialog()
:The above code adjusts the buttons as I desire. Then, in my
CMFCPropertyPage::OnInitDialog()
handlers I callCancelToClose()
.The result: