Index: Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/IFailureMechanism.cs =================================================================== diff -u -r0e504f118af835cdd73f7a616794e62dfa523f9b -r6b9d81d78d70c5773a1255a6e49db0228cbff7f6 --- Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/IFailureMechanism.cs (.../IFailureMechanism.cs) (revision 0e504f118af835cdd73f7a616794e62dfa523f9b) +++ Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/IFailureMechanism.cs (.../IFailureMechanism.cs) (revision 6b9d81d78d70c5773a1255a6e49db0228cbff7f6) @@ -32,7 +32,7 @@ public interface IFailureMechanism : ICommentable, IStorable, IObservable { /// - /// Gets the amount of contribution as a percentage [0-100) for the + /// Gets the amount of contribution as a percentage [0-100] for the /// as part of the overall verdict. /// /// Thrown when the is not in interval [0-100]. @@ -49,7 +49,7 @@ IEnumerable CalculationItems { get; } /// - /// Gets the sections that define area's for which a calculation could determine + /// Gets the sections that define areas for which a calculation could determine /// a representative result. Cannot return null. /// IEnumerable Sections { get; } Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/FailureMechanismContributionView.Designer.cs =================================================================== diff -u -r0e504f118af835cdd73f7a616794e62dfa523f9b -r6b9d81d78d70c5773a1255a6e49db0228cbff7f6 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/FailureMechanismContributionView.Designer.cs (.../FailureMechanismContributionView.Designer.cs) (revision 0e504f118af835cdd73f7a616794e62dfa523f9b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/FailureMechanismContributionView.Designer.cs (.../FailureMechanismContributionView.Designer.cs) (revision 6b9d81d78d70c5773a1255a6e49db0228cbff7f6) @@ -27,12 +27,12 @@ this.probabilityDistributionGrid = new System.Windows.Forms.DataGridView(); this.normInput = new System.Windows.Forms.NumericUpDown(); this.perYearLabel = new System.Windows.Forms.Label(); - this.label1 = new System.Windows.Forms.Label(); + this.assessmentSectionConfigurationLabel = new System.Windows.Forms.Label(); this.assessmentSectionCompositionComboBox = new System.Windows.Forms.ComboBox(); - this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); + this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); ((System.ComponentModel.ISupportInitialize)(this.probabilityDistributionGrid)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.normInput)).BeginInit(); - this.tableLayoutPanel1.SuspendLayout(); + this.tableLayoutPanel.SuspendLayout(); this.SuspendLayout(); // // normLabel @@ -45,7 +45,7 @@ this.probabilityDistributionGrid.AllowUserToResizeColumns = false; this.probabilityDistributionGrid.AllowUserToResizeRows = false; this.probabilityDistributionGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; - this.tableLayoutPanel1.SetColumnSpan(this.probabilityDistributionGrid, 5); + this.tableLayoutPanel.SetColumnSpan(this.probabilityDistributionGrid, 5); resources.ApplyResources(this.probabilityDistributionGrid, "probabilityDistributionGrid"); this.probabilityDistributionGrid.Name = "probabilityDistributionGrid"; this.probabilityDistributionGrid.ReadOnly = true; @@ -78,10 +78,10 @@ resources.ApplyResources(this.perYearLabel, "perYearLabel"); this.perYearLabel.Name = "perYearLabel"; // - // label1 + // assessmentSectionConfigurationLabel // - resources.ApplyResources(this.label1, "label1"); - this.label1.Name = "label1"; + resources.ApplyResources(this.assessmentSectionConfigurationLabel, "assessmentSectionConfigurationLabel"); + this.assessmentSectionConfigurationLabel.Name = "assessmentSectionConfigurationLabel"; // // assessmentSectionCompositionComboBox // @@ -90,35 +90,35 @@ this.assessmentSectionCompositionComboBox.FormattingEnabled = true; this.assessmentSectionCompositionComboBox.Name = "assessmentSectionCompositionComboBox"; // - // tableLayoutPanel1 + // tableLayoutPanel // - resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1"); - this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0); - this.tableLayoutPanel1.Controls.Add(this.assessmentSectionCompositionComboBox, 1, 0); - this.tableLayoutPanel1.Controls.Add(this.normLabel, 2, 0); - this.tableLayoutPanel1.Controls.Add(this.normInput, 3, 0); - this.tableLayoutPanel1.Controls.Add(this.perYearLabel, 4, 0); - this.tableLayoutPanel1.Controls.Add(this.probabilityDistributionGrid, 0, 1); - this.tableLayoutPanel1.Name = "tableLayoutPanel1"; + resources.ApplyResources(this.tableLayoutPanel, "tableLayoutPanel"); + this.tableLayoutPanel.Controls.Add(this.assessmentSectionConfigurationLabel, 0, 0); + this.tableLayoutPanel.Controls.Add(this.assessmentSectionCompositionComboBox, 1, 0); + this.tableLayoutPanel.Controls.Add(this.normLabel, 2, 0); + this.tableLayoutPanel.Controls.Add(this.normInput, 3, 0); + this.tableLayoutPanel.Controls.Add(this.perYearLabel, 4, 0); + this.tableLayoutPanel.Controls.Add(this.probabilityDistributionGrid, 0, 1); + this.tableLayoutPanel.Name = "tableLayoutPanel"; // // FailureMechanismContributionView // - this.Controls.Add(this.tableLayoutPanel1); + this.Controls.Add(this.tableLayoutPanel); this.Name = "FailureMechanismContributionView"; resources.ApplyResources(this, "$this"); ((System.ComponentModel.ISupportInitialize)(this.probabilityDistributionGrid)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.normInput)).EndInit(); - this.tableLayoutPanel1.ResumeLayout(false); - this.tableLayoutPanel1.PerformLayout(); + this.tableLayoutPanel.ResumeLayout(false); + this.tableLayoutPanel.PerformLayout(); this.ResumeLayout(false); } #endregion - private Label label1; + private Label assessmentSectionConfigurationLabel; private ComboBox assessmentSectionCompositionComboBox; - private TableLayoutPanel tableLayoutPanel1; + private TableLayoutPanel tableLayoutPanel; } } Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/FailureMechanismContributionView.resx =================================================================== diff -u -r0e504f118af835cdd73f7a616794e62dfa523f9b -r6b9d81d78d70c5773a1255a6e49db0228cbff7f6 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/FailureMechanismContributionView.resx (.../FailureMechanismContributionView.resx) (revision 0e504f118af835cdd73f7a616794e62dfa523f9b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/FailureMechanismContributionView.resx (.../FailureMechanismContributionView.resx) (revision 6b9d81d78d70c5773a1255a6e49db0228cbff7f6) @@ -145,45 +145,45 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - tableLayoutPanel1 + tableLayoutPanel 2 - + 5 - + True - + Fill - + 3, 0 - + 66, 26 - + 1 - + Traject type: - + MiddleRight - - label1 + + assessmentSectionConfigurationLabel - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tableLayoutPanel1 + + tableLayoutPanel - + 0 @@ -205,7 +205,7 @@ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - tableLayoutPanel1 + tableLayoutPanel 1 @@ -229,7 +229,7 @@ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - tableLayoutPanel1 + tableLayoutPanel 3 @@ -262,40 +262,40 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - tableLayoutPanel1 + tableLayoutPanel 4 - + Fill - + 0, 0 - + 2 - + 531, 190 - + 7 - - tableLayoutPanel1 + + tableLayoutPanel - + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + $this - + 0 - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="label1" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="assessmentSectionCompositionComboBox" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="normLabel" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="normInput" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="perYearLabel" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="probabilityDistributionGrid" Row="1" RowSpan="1" Column="0" ColumnSpan="5" /></Controls><Columns Styles="AutoSize,0,AutoSize,0,AutoSize,0,AutoSize,0,AutoSize,0" /><Rows Styles="Absolute,26,AutoSize,0" /></TableLayoutSettings> + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="assessmentSectionConfigurationLabel" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="assessmentSectionCompositionComboBox" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="normLabel" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="normInput" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="perYearLabel" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="probabilityDistributionGrid" Row="1" RowSpan="1" Column="0" ColumnSpan="5" /></Controls><Columns Styles="AutoSize,0,AutoSize,0,AutoSize,0,AutoSize,0,AutoSize,0" /><Rows Styles="Absolute,26,AutoSize,0" /></TableLayoutSettings> Fill @@ -316,7 +316,7 @@ System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - tableLayoutPanel1 + tableLayoutPanel 5