예제 #1
0
        /// <inheritdoc/>
        protected override void OnInitialized()
        {
            ParentSteps?.NotifyStepInitialized(Name);

            ParentStepsContent?.NotifyStepPanelInitialized(Name);

            base.OnInitialized();
        }
예제 #2
0
        /// <inheritdoc/>
        protected override void Dispose(bool disposing)
        {
            if (disposing)
            {
                ParentSteps?.NotifyStepRemoved(Name);

                ParentStepsContent?.NotifyStepPanelRemoved(Name);
            }

            base.Dispose(disposing);
        }
예제 #3
0
        protected override void OnInitialized()
        {
            if (ParentSteps != null)
            {
                ParentSteps.NotifyStepInitialized(Name);
            }

            if (ParentStepsContent != null)
            {
                ParentStepsContent.NotifyStepPanelInitialized(Name);
            }

            base.OnInitialized();
        }
예제 #4
0
        protected override void Dispose(bool disposing)
        {
            if (disposing)
            {
                if (ParentSteps != null)
                {
                    ParentSteps.NotifyStepRemoved(Name);
                }

                if (ParentStepsContent != null)
                {
                    ParentStepsContent.NotifyStepPanelRemoved(Name);
                }
            }

            base.Dispose(disposing);
        }