evanwon / WPFCustomMessageBox

A WPF clone of the native Windows/.NET MessageBox with extra features like custom button text.
124 stars 63 forks source link

Feature request: Mixing caption strings and MessageBoxButtons #6

Open cstuder opened 11 years ago

cstuder commented 11 years ago

Add additional overrides for the Show-methods to support a mix of caption strings and MessageBoxButtons. I.e.:

CustomMessageBox.ShowOKCancel(
    "Are you sure you want to eject the nuclear fuel rods?",
    "Confirm Fuel Ejection",
    MessageBoxButton.Ok,
    "Don't do it!");

Due to the number of possible combinations, this might get a little bit tedious...