Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Extensions/ContextMenuStripExtensions.cs
===================================================================
diff -u -raa5c3620f316831e71797c558a13a0b73a8109df -rd3747e8b32bdedc478c8182bce75fba78269d34d
--- Ringtoets/Common/src/Ringtoets.Common.Forms/Extensions/ContextMenuStripExtensions.cs (.../ContextMenuStripExtensions.cs) (revision aa5c3620f316831e71797c558a13a0b73a8109df)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/Extensions/ContextMenuStripExtensions.cs (.../ContextMenuStripExtensions.cs) (revision d3747e8b32bdedc478c8182bce75fba78269d34d)
@@ -17,7 +17,7 @@
/// Value for .
/// Value for .
/// Method to handle the user clicking on the item..
- /// The newly created menu item.
+ /// The newly created .
public static ToolStripItem AddMenuItem(this ContextMenuStrip parentMenu, string text, string tooltip, Image icon, EventHandler clickHandler)
{
var newItem = new ToolStripMenuItem(text)
@@ -31,5 +31,16 @@
return newItem;
}
+
+ ///
+ /// Adds a new with all standard parameters.
+ ///
+ /// The parent menu to which the new item is added.
+ public static void AddSeperator(this ContextMenuStrip parentMenu)
+ {
+ var newItem = new ToolStripSeparator();
+
+ parentMenu.Items.Add(newItem);
+ }
}
}
\ No newline at end of file
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.Designer.cs
===================================================================
diff -u -re84d6f09851705c41a9ff8f26124c039a36adecf -rd3747e8b32bdedc478c8182bce75fba78269d34d
--- Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision e84d6f09851705c41a9ff8f26124c039a36adecf)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision d3747e8b32bdedc478c8182bce75fba78269d34d)
@@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
-// Runtime Version:4.0.30319.18444
+// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@@ -61,6 +61,102 @@
}
///
+ /// Looks up a localized string similar to Alles berekenen.
+ ///
+ public static string Calculate_all {
+ get {
+ return ResourceManager.GetString("Calculate_all", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Valideer en voer alle berekeningen binnen het faalmechanisme uit..
+ ///
+ public static string Calculate_all_ToolTip {
+ get {
+ return ResourceManager.GetString("Calculate_all_ToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ public static System.Drawing.Bitmap CalculateAllIcon {
+ get {
+ object obj = ResourceManager.GetObject("CalculateAllIcon", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Wis alle uitvoer.
+ ///
+ public static string Clear_all_output {
+ get {
+ return ResourceManager.GetString("Clear_all_output", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Wis de uitvoer van alle berekeningen binnen het faalmechanisme..
+ ///
+ public static string Clear_all_output_ToolTip {
+ get {
+ return ResourceManager.GetString("Clear_all_output_ToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ public static System.Drawing.Bitmap ClearOutputIcon {
+ get {
+ object obj = ResourceManager.GetObject("ClearOutputIcon", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ public static System.Drawing.Bitmap CollapseAllIcon {
+ get {
+ object obj = ResourceManager.GetObject("CollapseAllIcon", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ public static System.Drawing.Bitmap EraseIcon {
+ get {
+ object obj = ResourceManager.GetObject("EraseIcon", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ public static System.Drawing.Bitmap ExpandAllIcon {
+ get {
+ object obj = ResourceManager.GetObject("ExpandAllIcon", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ public static System.Drawing.Bitmap ExportIcon {
+ get {
+ object obj = ResourceManager.GetObject("ExportIcon", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
/// Looks up a localized string similar to Berekeningen.
///
public static string FailureMechanism_Calculations_DisplayName {
@@ -70,6 +166,60 @@
}
///
+ /// Looks up a localized string similar to Alles i&nklappen.
+ ///
+ public static string FailureMechanism_Collapse_all {
+ get {
+ return ResourceManager.GetString("FailureMechanism_Collapse_all", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Klap deze knoop en al zijn kinderen in..
+ ///
+ public static string FailureMechanism_Collapse_all_ToolTip {
+ get {
+ return ResourceManager.GetString("FailureMechanism_Collapse_all_ToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Alles ui&tklappen.
+ ///
+ public static string FailureMechanism_Expand_all {
+ get {
+ return ResourceManager.GetString("FailureMechanism_Expand_all", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Klap deze knoop en al zijn kinderen uit..
+ ///
+ public static string FailureMechanism_Expand_all_ToolTip {
+ get {
+ return ResourceManager.GetString("FailureMechanism_Expand_all_ToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Exporteren....
+ ///
+ public static string FailureMechanism_Export {
+ get {
+ return ResourceManager.GetString("FailureMechanism_Export", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Exporteer gegevens naar een bestand..
+ ///
+ public static string FailureMechanism_Export_ToolTip {
+ get {
+ return ResourceManager.GetString("FailureMechanism_Export_ToolTip", resourceCulture);
+ }
+ }
+
+ ///
/// Looks up a localized string similar to Invoer.
///
public static string FailureMechanism_Inputs_DisplayName {
@@ -79,6 +229,60 @@
}
///
+ /// Looks up a localized string similar to &Wissen.
+ ///
+ public static string FailureMechanism_InputsOutputs_Erase {
+ get {
+ return ResourceManager.GetString("FailureMechanism_InputsOutputs_Erase", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Wis de huidige gegevens..
+ ///
+ public static string FailureMechanism_InputsOutputs_Erase_ToolTip {
+ get {
+ return ResourceManager.GetString("FailureMechanism_InputsOutputs_Erase_ToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Importeren....
+ ///
+ public static string FailureMechanism_InputsOutputs_Import {
+ get {
+ return ResourceManager.GetString("FailureMechanism_InputsOutputs_Import", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Importeer gegevens vanuit een bestand..
+ ///
+ public static string FailureMechanism_InputsOutputs_Import_ToolTip {
+ get {
+ return ResourceManager.GetString("FailureMechanism_InputsOutputs_Import_ToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Openen.
+ ///
+ public static string FailureMechanism_InputsOutputs_Open {
+ get {
+ return ResourceManager.GetString("FailureMechanism_InputsOutputs_Open", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Open de gegevens in een nieuw documentvenster..
+ ///
+ public static string FailureMechanism_InputsOutputs_Open_ToolTip {
+ get {
+ return ResourceManager.GetString("FailureMechanism_InputsOutputs_Open_ToolTip", resourceCulture);
+ }
+ }
+
+ ///
/// Looks up a localized string similar to Uitvoer.
///
public static string FailureMechanism_Outputs_DisplayName {
@@ -88,6 +292,24 @@
}
///
+ /// Looks up a localized string similar to Ei&genschappen.
+ ///
+ public static string FailureMechanism_Properties {
+ get {
+ return ResourceManager.GetString("FailureMechanism_Properties", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Laat de eigenschappen zien in het eigenschappenvenster..
+ ///
+ public static string FailureMechanism_Properties_ToolTip {
+ get {
+ return ResourceManager.GetString("FailureMechanism_Properties_ToolTip", resourceCulture);
+ }
+ }
+
+ ///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
public static System.Drawing.Bitmap GeneralFolderIcon {
@@ -100,6 +322,16 @@
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
+ public static System.Drawing.Bitmap ImportIcon {
+ get {
+ object obj = ResourceManager.GetObject("ImportIcon", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
public static System.Drawing.Bitmap InputFolderIcon {
get {
object obj = ResourceManager.GetObject("InputFolderIcon", resourceCulture);
@@ -110,6 +342,16 @@
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
+ public static System.Drawing.Bitmap OpenIcon {
+ get {
+ object obj = ResourceManager.GetObject("OpenIcon", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
public static System.Drawing.Bitmap OutputFolderIcon {
get {
object obj = ResourceManager.GetObject("OutputFolderIcon", resourceCulture);
@@ -118,6 +360,16 @@
}
///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ public static System.Drawing.Bitmap PropertiesIcon {
+ get {
+ object obj = ResourceManager.GetObject("PropertiesIcon", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
/// Looks up a localized string similar to Algemeen.
///
public static string Ringtoets_Category {
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.resx
===================================================================
diff -u -re84d6f09851705c41a9ff8f26124c039a36adecf -rd3747e8b32bdedc478c8182bce75fba78269d34d
--- Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.resx (.../Resources.resx) (revision e84d6f09851705c41a9ff8f26124c039a36adecf)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.resx (.../Resources.resx) (revision d3747e8b32bdedc478c8182bce75fba78269d34d)
@@ -145,4 +145,85 @@
Uitvoer
+
+ Alles berekenen
+
+
+ Wis alle uitvoer
+
+
+ &Wissen
+
+
+ Wis de huidige gegevens.
+
+
+ &Exporteren...
+
+
+ Exporteer gegevens naar een bestand.
+
+
+ &Importeren...
+
+
+ Importeer gegevens vanuit een bestand.
+
+
+ &Openen
+
+
+ Open de gegevens in een nieuw documentvenster.
+
+
+ Ei&genschappen
+
+
+ Laat de eigenschappen zien in het eigenschappenvenster.
+
+
+ ..\resources\cross-script.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\resources\table-export.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\resources\table-import.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\resources\arrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\resources\property.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\resources\playall.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Valideer en voer alle berekeningen binnen het faalmechanisme uit.
+
+
+ ..\resources\table_delete.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Wis de uitvoer van alle berekeningen binnen het faalmechanisme.
+
+
+ ..\Resources\arrow-stop-090.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\arrow-stop-270.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Alles i&nklappen
+
+
+ Klap deze knoop en al zijn kinderen in.
+
+
+ Alles ui&tklappen
+
+
+ Klap deze knoop en al zijn kinderen uit.
+
\ No newline at end of file
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Resources/PlayAll.png
===================================================================
diff -u
Binary files differ
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Resources/arrow-stop-090.png
===================================================================
diff -u
Binary files differ
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Resources/arrow-stop-270.png
===================================================================
diff -u
Binary files differ
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Resources/arrow.png
===================================================================
diff -u
Binary files differ
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Resources/cross-script.png
===================================================================
diff -u
Binary files differ
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Resources/property.png
===================================================================
diff -u
Binary files differ
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Resources/table-export.png
===================================================================
diff -u
Binary files differ
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Resources/table-import.png
===================================================================
diff -u
Binary files differ
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Resources/table_delete.png
===================================================================
diff -u
Binary files differ
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Ringtoets.Common.Forms.csproj
===================================================================
diff -u -r279b6419e68e1a68659c8564b8410679a3d9d983 -rd3747e8b32bdedc478c8182bce75fba78269d34d
--- Ringtoets/Common/src/Ringtoets.Common.Forms/Ringtoets.Common.Forms.csproj (.../Ringtoets.Common.Forms.csproj) (revision 279b6419e68e1a68659c8564b8410679a3d9d983)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/Ringtoets.Common.Forms.csproj (.../Ringtoets.Common.Forms.csproj) (revision d3747e8b32bdedc478c8182bce75fba78269d34d)
@@ -91,6 +91,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+