AvalonStudio.Behaviors.EditorToolTipBehavior.OnDetaching C# (CSharp) 메소드

OnDetaching() 보호된 메소드

protected OnDetaching ( ) : void
리턴 void
        protected override void OnDetaching()
        {
            editorVm = null;

            if (editor != null)
            {
                editor.DataContextChanged -= Editor_DataContextChanged;

                editor = null;
            }

            base.OnDetaching();
        }