ARCed.UI.DockContentHandler.Form_TextChanged C# (CSharp) 메소드

Form_TextChanged() 개인적인 메소드

private Form_TextChanged ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        private void Form_TextChanged(object sender, EventArgs e)
        {
            if (DockHelper.IsDockStateAutoHide(this.DockState))
                this.DockPanel.RefreshAutoHideStrip();
            else if (this.Pane != null)
            {
                if (this.Pane.FloatWindow != null)
                    this.Pane.FloatWindow.SetText();
                this.Pane.RefreshChanges();
            }
        }