树的几个形状值
2017-01-25 17:48:56 访问(1423) 赞(0) 踩(0)
#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
标签:
树的几个形状值 


上一条:
下一条:
相关评论
发表评论