ARCed.UI.FloatWindow.SetText C# (CSharp) 메소드

SetText() 개인적인 메소드

private SetText ( ) : void
리턴 void
        internal void SetText()
        {
            DockPane theOnlyPane = (this.VisibleNestedPanes.Count == 1) ? this.VisibleNestedPanes[0] : null;

            if (theOnlyPane == null)
                Text = " ";	// use " " instead of string.Empty because the whole title bar will disappear when ControlBox is set to false.
            else if (theOnlyPane.ActiveContent == null)
                Text = " ";
            else
                Text = theOnlyPane.ActiveContent.DockHandler.TabText;
        }