/// <inheritdoc/> protected override void OnInitialized() { ParentSteps?.NotifyStepInitialized(Name); ParentStepsContent?.NotifyStepPanelInitialized(Name); base.OnInitialized(); }
/// <inheritdoc/> protected override void Dispose(bool disposing) { if (disposing) { ParentSteps?.NotifyStepRemoved(Name); ParentStepsContent?.NotifyStepPanelRemoved(Name); } base.Dispose(disposing); }
protected override void OnInitialized() { if (ParentSteps != null) { ParentSteps.NotifyStepInitialized(Name); } if (ParentStepsContent != null) { ParentStepsContent.NotifyStepPanelInitialized(Name); } base.OnInitialized(); }
protected override void Dispose(bool disposing) { if (disposing) { if (ParentSteps != null) { ParentSteps.NotifyStepRemoved(Name); } if (ParentStepsContent != null) { ParentStepsContent.NotifyStepPanelRemoved(Name); } } base.Dispose(disposing); }