Index: src/Deltares.DSoilModel.Forms/SpecificMechanismPointLocationControl.cs =================================================================== diff -u -r116 -r561 --- src/Deltares.DSoilModel.Forms/SpecificMechanismPointLocationControl.cs (.../SpecificMechanismPointLocationControl.cs) (revision 116) +++ src/Deltares.DSoilModel.Forms/SpecificMechanismPointLocationControl.cs (.../SpecificMechanismPointLocationControl.cs) (revision 561) @@ -16,7 +16,7 @@ InitializeComponent(); ((IPropertyControl) this).Name = LocalizationManager.GetTranslatedText(this, "SpecificMechanismPointLocation"); - BindSupport.BindTextAndValue(this, XcoordinateLabel, XcoordinateEdit, typeof(SpecificMechanismPointLocation), "XCoordinate"); + BindSupport.BindTextValueAndUnit(this, XcoordinateLabel, XcoordinateEdit, typeof(SpecificMechanismPointLocation), "XCoordinate"); BindSupport.BindTextAndValue(this, MechanismLabel, MechanismEdit, typeof(SpecificMechanismPointLocation), "Mechanism"); BindSupport.BindTextAndValue(this, SoilProfileLabel, SoilProfileEdit, typeof(SpecificMechanismPointLocation), "SoilProfile2D"); Index: src/Deltares.DSoilModel.Forms/CenterCrestLocationPropertyControl.cs =================================================================== diff -u -r7 -r561 --- src/Deltares.DSoilModel.Forms/CenterCrestLocationPropertyControl.cs (.../CenterCrestLocationPropertyControl.cs) (revision 7) +++ src/Deltares.DSoilModel.Forms/CenterCrestLocationPropertyControl.cs (.../CenterCrestLocationPropertyControl.cs) (revision 561) @@ -20,7 +20,7 @@ { InitializeComponent(); ((IPropertyControl)this).Name = "CenterCrestLocation"; - BindSupport.BindTextAndValue(this, XcoordinateLabel, XcoordinateEdit, typeof(CenterCrestLocation), "Location"); + BindSupport.BindTextValueAndUnit(this, XcoordinateLabel, XcoordinateEdit, typeof(CenterCrestLocation), "Location"); BindSupport.BindTextAndValue(this, SoilProfileLabel, SoilProfileEdit, typeof(CenterCrestLocation), "SoilProfile2D"); LocalizationSupport.RegisterAndTranslate(typeof(DataEventPublisherHelper), IdentificationCclGroupControl);