我需要阻止折叠时节点上发生的点击事件。我仍然希望节点折叠并隐藏其下的所有子节点,但我不希望触发click事件或尽可能选择节点。
答案 0 :(得分:1)
如果您只需要影响自己的代码,可以使用以下标志:
bool suppressClick = false;
private void treeView1_Click(object sender, EventArgs e)
{
if (suppressClick) return;
// else your regular code..
}
private void treeView1_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
{
if (e.Node.IsExpanded)
{ suppressClick = false; }
else { suppressClick = true; }
}
要获得更多控制权,您可能需要访问Windows消息队列..
答案 1 :(得分:0)
我尝试使用以前的解决方案,但它只采用一种方式。我实现了一个字典,我保持节点展开/折叠,所以当我发现状态是相同的时,它是一个实际的节点点击而不是折叠/扩展行为。
public class Yourclass {
var nodeStates = new Dictionary<int, bool>();
public void addNode(Yourentity entity)
{
TreeNode node= new TreeNode(entity.Name);
node.Tag = entity;
tree.Nodes.Add(entity);
nodeStates.Add(entity.Id, true /* expanded in this case but doesn't matter */);
}
private void TreeControl_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e) {
var entity = (Yourentity )e.Node.Tag;
bool state = nodeStates[entity.Id];
// If was expanded or collapsed values will be different
if (e.Node.Nodes.Count > 0 && (e.Node.IsExpanded != state))
{
// We update the state
nodeStates[entity.Id] = e.Node.IsExpanded;
return;
}
/* Put here your actual node click code */
}
}