Add cancel button to 'Do you want to save?' message box #1185
+43
−8
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR fixes #1183 by adding a cancel button to the 'Do you want to save?' message box.
Overall the MessageBox looks like this now:
![](https://private-user-images.githubusercontent.com/59574371/412289622-b8c53ed7-5532-4c37-b149-68694783aac2.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk1NjA4MjEsIm5iZiI6MTczOTU2MDUyMSwicGF0aCI6Ii81OTU3NDM3MS80MTIyODk2MjItYjhjNTNlZDctNTUzMi00YzM3LWIxNDktNjg2OTQ3ODNhYWMyLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTQlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE0VDE5MTUyMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWM3OWM0NTZjMzc2NjMzNzk3OTkyYzVlMmY3NmM1NTM1NjMwN2IwM2MyOTQyZDM4MjQwM2RlN2Q1ZTYyNDEzMGYmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.e0JnMd8DQRr8WbmqMoAsSdi3_Un5TZ4Q1npbWvAbDJI)
From a technial point of view I introduced a new enum
MessageBoxResult
representing the return values of a MessageBox.This enum is intended to pursue the idea of the
IMessageBox
interface further: hiding the implementation details of the Windows Forms MessageBox to the caller.So far a boolean return value was sufficient for all methods of the IMessageBox interface - however the new method
YesNoCancel
requires more than a boolean state - do I decided to use that enum.