Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/FailureMechanismContributionProperties.cs =================================================================== diff -u -r5b300c761d0d8b3748f2ebacb051ff695293e4c6 -rcdf0db780e289f3d6fc5a2a6db00f26517a3aec4 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/FailureMechanismContributionProperties.cs (.../FailureMechanismContributionProperties.cs) (revision 5b300c761d0d8b3748f2ebacb051ff695293e4c6) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/FailureMechanismContributionProperties.cs (.../FailureMechanismContributionProperties.cs) (revision cdf0db780e289f3d6fc5a2a6db00f26517a3aec4) @@ -23,12 +23,14 @@ using System.Collections.Generic; using System.ComponentModel; using Core.Common.Base; +using Core.Common.Gui.Attributes; using Core.Common.Gui.PropertyBag; using Core.Common.Utils; using Core.Common.Utils.Attributes; using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Common.Data.Contribution; using Ringtoets.Common.Forms.ChangeHandlers; +using Ringtoets.Common.Forms.Helpers; using Ringtoets.Common.Forms.PropertyClasses; using Ringtoets.Integration.Forms.Properties; using RingtoetsCommonFormsResources = Ringtoets.Common.Forms.Properties.Resources; @@ -81,6 +83,7 @@ this.assessmentSection = assessmentSection; } + [PropertyOrder(1)] [TypeConverter(typeof(EnumTypeConverter))] [ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_General))] [ResourcesDisplayName(typeof(Resources), nameof(Resources.FailureMechanismContribution_Composition_DisplayName))] @@ -106,6 +109,7 @@ } } + [PropertyOrder(2)] [ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_General))] [ResourcesDisplayName(typeof(Resources), nameof(Resources.FailureMechanismContribution_ReturnPeriod_DisplayName))] [ResourcesDescription(typeof(Resources), nameof(Resources.FailureMechanismContribution_ReturnPeriod_Description))] @@ -122,5 +126,42 @@ PropertyChangeHelper.ChangePropertyAndNotify(() => assessmentSection.FailureMechanismContribution.Norm = newNormValue, normChangeHandler); } } + + [PropertyOrder(2)] + [ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_General))] + [ResourcesDisplayName(typeof(Resources), nameof(Resources.LowerLimitNorm_DisplayName))] + [ResourcesDescription(typeof(Resources), nameof(Resources.LowerLimitNorm_Description))] + public string LowerLimitNorm + { + get + { + return ProbabilityFormattingHelper.Format(data.LowerLimitNorm); + } + } + + [PropertyOrder(3)] + [ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_General))] + [ResourcesDisplayName(typeof(Resources), nameof(Resources.SignalingNorm_DisplayName))] + [ResourcesDescription(typeof(Resources), nameof(Resources.SignalingNorm_Description))] + public string SignalingNorm + { + get + { + return ProbabilityFormattingHelper.Format(data.SignalingNorm); + } + } + + [PropertyOrder(4)] + [ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_General))] + [ResourcesDisplayName(typeof(Resources), nameof(Resources.NormType_DisplayName))] + [ResourcesDescription(typeof(Resources), nameof(Resources.NormType_Description))] + [TypeConverter(typeof(EnumTypeConverter))] + public NormType NormType + { + get + { + return data.NormType; + } + } } } \ No newline at end of file