创建树节点 - CreateTreeNode
2017-02-21 21:51:03 访问(1529) 赞(0) 踩(0)
/// <summary>
/// 创建树节点 - CreateTreeNode
/// </summary>
/// <param name="nodeId"></param>
/// <param name="nodeText"></param>
/// <returns></returns>
public static FineUI.TreeNode CreateTreeNode(string nodeId, string nodeText)
{
FineUI.TreeNode theResult = new FineUI.TreeNode();
theResult.NodeID = nodeId;
theResult.Text = nodeText;
return theResult;
}
标签:
创建树节点 - CreateTreeNode 


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