我正在树视图中将子节点添加到当前父节点。但我的问题是它将新节点添加到当前父节点的末尾,而不是添加if
为真的位置。
这是我的代码:
for (int i = 0; i < num; i++)
{
if (action_type1 != action_type2)
{
TreeNode new_node = = treeView1.Nodes[0].Nodes[position];
string new_name = "";
new_node.Nodes.Add(new_name);
}
}
当然num
,position
,action_type1
和action_type2
是我的代码中的变量,对于任何for循环,它们都是不同的整数字符串。 action_type1
是treeView的节点名称,action_type2
是固定字符串。如果节点与给定字符串相等,则if
循环查找整个树,然后离开节点,否则在树中插入空节点,然后递归执行。
但为了简单起见,我们有:
int num = 2;
int position = 4;
string action_type1;
string action_type2;
答案 0 :(得分:0)
这是你想要的吗?
for (int i = 0; i < num; i++)
{
if (action_type1 != action_type2)
{
treeView1.Nodes[i].Nodes.Insert(position - 1, virtual_name);
}
}