Index: Riskeer/GrassCoverErosionInwards/src/Riskeer.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsCalculationRow.cs =================================================================== diff -u -r8b5dfb41abcced1739a650af6291a80cab862e1e -re385fc00bf3c2a7e9363acc70a997463e125fc94 --- Riskeer/GrassCoverErosionInwards/src/Riskeer.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsCalculationRow.cs (.../GrassCoverErosionInwardsCalculationRow.cs) (revision 8b5dfb41abcced1739a650af6291a80cab862e1e) +++ Riskeer/GrassCoverErosionInwards/src/Riskeer.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsCalculationRow.cs (.../GrassCoverErosionInwardsCalculationRow.cs) (revision e385fc00bf3c2a7e9363acc70a997463e125fc94) @@ -46,6 +46,11 @@ private const int useForeshoreColumnIndex = 6; /// + /// Fired when has changed. + /// + public EventHandler DikeProfileChanged; + + /// /// Creates a new instance of . /// /// The this row contains. @@ -75,6 +80,7 @@ { PropertyChangeHelper.ChangePropertyAndNotify(() => Calculation.InputParameters.DikeProfile = valueToSet, PropertyChangeHandler); UpdateUseBreakWaterColumnStateDefinitions(); + DikeProfileChanged?.Invoke(this, EventArgs.Empty); } } }