Ejemplo n.º 1
0
 //状態
 internal SplitFormat.Node Format()
 {
     return(new SplitFormat.Node(
                this.IsLast ? 0 : _ratio,
                _childList == null ? null : _childList.Format(),
                _pane == null ? null : _pane.Label,
                _next == null ? null : _next.Format()));
 }
Ejemplo n.º 2
0
 public string FormatSplit()
 {
     if (_rootList != null)
     {
         return(_rootList.Format().ToString());
     }
     else
     {
         return("");
     }
 }