Index: Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/IllustrationPointProperties.cs
===================================================================
diff -u -ra49798da6ac2176d2e8b28ec6fec8a2494d8ee91 -r3e5d6f7c7f61eb17c81d1f80d2e55fda103f766d
--- Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/IllustrationPointProperties.cs (.../IllustrationPointProperties.cs) (revision a49798da6ac2176d2e8b28ec6fec8a2494d8ee91)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/IllustrationPointProperties.cs (.../IllustrationPointProperties.cs) (revision 3e5d6f7c7f61eb17c81d1f80d2e55fda103f766d)
@@ -42,9 +42,8 @@
/// Creates a new instance of .
///
/// The data to use for the properties.
- /// String containing the wind direction for this illustration point.
- /// String containing the name of the closing situation. If empty
- /// the property will not be visible.
+ /// The wind direction of the illustration point.
+ /// The closing situation of the illustration point.
/// Thrown when any input parameter is null.
public IllustrationPointProperties(IllustrationPointBase illustrationPoint,
string windDirection, string closingSituation)
@@ -66,7 +65,7 @@
ClosingSituation = closingSituation;
}
- [PropertyOrder(0)]
+ [PropertyOrder(1)]
[TypeConverter(typeof(NoProbabilityValueDoubleConverter))]
[ResourcesCategory(typeof(Resources), nameof(Resources.Categories_IllustrationPoints))]
[ResourcesDisplayName(typeof(Resources), nameof(Resources.CalculationOutput_CalculatedProbability_DisplayName))]
@@ -79,7 +78,7 @@
}
}
- [PropertyOrder(1)]
+ [PropertyOrder(2)]
[TypeConverter(typeof(NoValueRoundedDoubleConverter))]
[ResourcesCategory(typeof(Resources), nameof(Resources.Categories_IllustrationPoints))]
[ResourcesDisplayName(typeof(Resources), nameof(Resources.CalculationOutput_CalculatedReliability_DisplayName))]
@@ -92,14 +91,14 @@
}
}
- [PropertyOrder(2)]
+ [PropertyOrder(3)]
[ResourcesCategory(typeof(Resources), nameof(Resources.Categories_IllustrationPoints))]
[ResourcesDisplayName(typeof(Resources), nameof(Resources.IllustrationPoint_WindDirection_DisplayName))]
[ResourcesDescription(typeof(Resources), nameof(Resources.IllustrationPoint_WindDirection_Description))]
public string WindDirection { get; }
[DynamicVisible]
- [PropertyOrder(3)]
+ [PropertyOrder(4)]
[ResourcesCategory(typeof(Resources), nameof(Resources.Categories_IllustrationPoints))]
[ResourcesDisplayName(typeof(Resources), nameof(Resources.IllustrationPoint_ClosingSituation_DisplayName))]
[ResourcesDescription(typeof(Resources), nameof(Resources.IllustrationPoint_ClosingSituation_Description))]
@@ -113,7 +112,7 @@
public override string ToString()
{
- return $"{data.Name}";
+ return data.Name;
}
}
}
\ No newline at end of file