树的几个形状值

2017-02-21 17:51:47  访问(1436) 赞(0) 踩(0)

using System;
using System.Collections.Generic;
using System.Text;

namespace SlowX.CtrlUtil.Common
{
    /// <summary>
    /// 树的几个形状值 +
    /// </summary>
    public class CommonName
    {
        #region 树的几个形状值

        /// <summary>
        /// 树形状(开始)
        /// </summary>
        public const string STR_TREE_BEGIN = "┌";
        /// <summary>
        /// 树形状(中间)
        /// </summary>
        public const string STR_TREE_MID = "├";
        /// <summary>
        /// 树形状(结束)
        /// </summary>
        public const string STR_TREE_END = "└";
        /// <summary>
        /// 树形状(链接)
        /// </summary>
        public const string STR_TREE_LINE = "┈";
        /// <summary>
        /// 树形状(中间+链接)
        /// </summary>
        public const string STR_TREE_DEFAULT = STR_TREE_MID + STR_TREE_LINE;

        /// <summary>
        /// 树形状(开始+链接)
        /// </summary>
        public const string STR_TREE_BEGIN_DEFAULT = STR_TREE_BEGIN + STR_TREE_LINE;

        /// <summary>
        /// 树形状(结束+链接)
        /// </summary>
        public const string STR_TREE_END_DEFAULT = STR_TREE_END + STR_TREE_LINE;


        #endregion
    }
}


标签:树的几个形状值 

上一条:

下一条:


 

相关评论

评论加载中……
 

发表评论

类型:
内容:
  (Alt+Enter)
 
  ┈全部┈  
 
(显示默认分类)