示例#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()));
 }
示例#2
0
 public SplitFormat Format()
 {
     return(new SplitFormat(_direction, _first.Format()));
 }