Index: Application/Ringtoets/src/Application.Ringtoets/ExceptionDialog.resx =================================================================== diff -u -rfa3a16496921649188ae04c0df6392dad64e100b -r11ca11333a24bcf1d16f6bf232aae3e60ef6ba24 --- Application/Ringtoets/src/Application.Ringtoets/ExceptionDialog.resx (.../ExceptionDialog.resx) (revision fa3a16496921649188ae04c0df6392dad64e100b) +++ Application/Ringtoets/src/Application.Ringtoets/ExceptionDialog.resx (.../ExceptionDialog.resx) (revision 11ca11333a24bcf1d16f6bf232aae3e60ef6ba24) @@ -292,7 +292,7 @@ 7 - Opslaan + Opslaan als buttonSaveProject @@ -322,6 +322,6 @@ ExceptionDialog - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + Core.Common.Controls.Dialogs.DialogBase, Core.Common.Controls, Version=16.1.1.4329, Culture=neutral, PublicKeyToken=null \ No newline at end of file Index: Application/Ringtoets/src/Application.Ringtoets/Properties/Resources.Designer.cs =================================================================== diff -u -rfa3a16496921649188ae04c0df6392dad64e100b -r11ca11333a24bcf1d16f6bf232aae3e60ef6ba24 --- Application/Ringtoets/src/Application.Ringtoets/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision fa3a16496921649188ae04c0df6392dad64e100b) +++ Application/Ringtoets/src/Application.Ringtoets/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 11ca11333a24bcf1d16f6bf232aae3e60ef6ba24) @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.17929 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -80,7 +80,7 @@ } /// - /// Looks up a localized string similar to Kon project niet opslaan. + /// Looks up a localized string similar to Project niet opgeslagen. /// internal static string ExceptionDialog_ButtonSaveProjectClick_Saving_project_failed_caption { get { Index: Application/Ringtoets/src/Application.Ringtoets/Properties/Resources.resx =================================================================== diff -u -rfa3a16496921649188ae04c0df6392dad64e100b -r11ca11333a24bcf1d16f6bf232aae3e60ef6ba24 --- Application/Ringtoets/src/Application.Ringtoets/Properties/Resources.resx (.../Resources.resx) (revision fa3a16496921649188ae04c0df6392dad64e100b) +++ Application/Ringtoets/src/Application.Ringtoets/Properties/Resources.resx (.../Resources.resx) (revision 11ca11333a24bcf1d16f6bf232aae3e60ef6ba24) @@ -131,6 +131,6 @@ Project opgeslagen - Kon project niet opslaan + Project niet opgeslagen \ No newline at end of file Index: Core/Common/src/Core.Common.Controls/Dialogs/DialogBase.cs =================================================================== diff -u -r5782c43794d78fe92cd8864cd8f8b0b53957ec06 -r11ca11333a24bcf1d16f6bf232aae3e60ef6ba24 --- Core/Common/src/Core.Common.Controls/Dialogs/DialogBase.cs (.../DialogBase.cs) (revision 5782c43794d78fe92cd8864cd8f8b0b53957ec06) +++ Core/Common/src/Core.Common.Controls/Dialogs/DialogBase.cs (.../DialogBase.cs) (revision 11ca11333a24bcf1d16f6bf232aae3e60ef6ba24) @@ -56,12 +56,17 @@ /// The "new" implementation for only hides the base method. Therefore, don't cast to . /// Otherwise the original implementation will be used. /// - public abstract partial class DialogBase : Form + public partial class DialogBase : Form { private readonly IWin32Window dialogParent; private readonly int minHeight; private readonly int minWidth; + public DialogBase() + { + + } + /// /// Constructs a new . /// @@ -147,6 +152,9 @@ /// /// The cancel button. /// By forcing derivatives to provide a cancel button, dialogs can be closed by hitting the ESC key on the keyboard. - protected abstract Button GetCancelButton(); + protected virtual Button GetCancelButton() + { + return new Button(); + } } } \ No newline at end of file