我想知道是否可以在Windows窗体中使用TreeView来添加或删除关卡?
例如: 我的树视图就像这样开始:
ParentNode
| Child1
| Child2
如果用户点击按钮向Child2添加级别,则变为:
ParentNode
| Child1
| | Child1.1
有一个Node.Level
函数但只能用于获取关卡而不能设置它。
编辑:
节点是自动构建的,根据excel单元格的样式分配级别。问题是,由于excel文件编写得不好,所以创建的节点不在正确的位置。所以我看到2个选项来解决这个问题:
1-用户直接修改excel文件
2-我在选择的节点上创建Move Left
Move Right
按钮。
我想提供第二种可能性。
这是我用来构建节点的代码:
public static void AddNodes(Excel.Application app,
TreeView treeView)
{
Excel.Range selection = app.Selection;
ArrayList style = new ArrayList();
TreeNode parentNode = treeView.SelectedNode;
//Selected Node => Last used node
for (int i = 1; i <= selection.Rows.Count; i++)
{
TreeNode tn;
int fontSize = Convert.ToInt32(selection.Cells[i].Font.Size);
if (!style.Contains(fontSize))
{
style.Add(fontSize);
}
else if (style[style.Count - 1].Equals(fontSize))
{
try
{
treeView.SelectedNode = treeView.SelectedNode.Parent;
}
catch (Exception x)
{
ErrorBox(x);
}
}
else
{
int indexPreviousCellofSameColor = style.IndexOf(fontSize);
//Select TN parent
for (int j = 1; j <= (style.Count - indexPreviousCellofSameFont); j++)
{ treeView.SelectedNode = treeView.SelectedNode.Parent; }
style.RemoveRange(indexPreviousCellofSameFont + 1, style.Count - indexPreviousCellofSameFont - 1);
}
if (selection.Cells[i].Value2 == null)
{
//if empty cell, do something ... or nothing
treeView.SelectedNode = treeView.SelectedNode.LastNode;
}
else
{
//Add new TN to parent - TN object corresponds to excel cell
tn = new TreeNode()
{
Text = selection.Cells[i].Value2,
Tag = selection.Cells[i],
};
treeView.SelectedNode.Nodes.Add(tn);
tn.ToolTipText = tn.Level.ToString();
//selected TN => created TN
treeView.SelectedNode = tn;
}
}
}
答案 0 :(得分:2)
我不得不完全改变我的答案。 这似乎在我的测试中完成了这项工作。它将所选节点移动到刚好位于其上方的新级别。 它需要更多的检查,以确保你的移动节点不被遗忘...
private void button1_Click(object sender, EventArgs e)
{
TreeNode selected = treeViewFilter.SelectedNode;
TreeNode parent = selected.Parent;
// find the node just above the selected node
TreeNode prior = parent.Nodes[selected.Index - 1];
if (parent != prior)
{
treeViewFilter.Nodes.Remove(selected);
prior.Nodes.Add(selected);
}
}