博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决treeview未选中时,默认选中首个根节点的问题!
阅读量:6615 次
发布时间:2019-06-24

本文共 518 字,大约阅读时间需要 1 分钟。

1 private void treeView1_MouseUp(object sender, MouseEventArgs e) 2         { 3               4             TreeNode selectnode = this.treeView1.GetNodeAt(e.Location); 5             if (selectnode == null) 6             { 7                 this.treeView1.SelectedNode = null; 8   9             }  10  11         }12  13         private void treeView1_BeforeSelect(object sender, TreeViewCancelEventArgs e)14         {15             if (e.Action == TreeViewAction.Unknown)16                 e.Cancel = true;17         }

 

转载地址:http://fhhso.baihongyu.com/

你可能感兴趣的文章
如何在Android Studio上使用Github
查看>>
C# Lock关键字
查看>>
更改linux系统语言
查看>>
公司那些事-你为谁工作
查看>>
【excel技巧读书笔记013】鼠标小动作
查看>>
Bayes Rule (贝叶斯公式)
查看>>
【初級篇】轻松学会华为LACP链路捆绑及二三层混绑,hybird-vlan,单臂路由
查看>>
Failed to lookup provider 'shm' for 'slotmem': is mod_slotmem_shm loaded
查看>>
RGBA alpha 透明度混合算法
查看>>
取消eclipse js验证
查看>>
HAProxy安装和配置大全
查看>>
exp导出备份数据库 报EXP-00026:指定了冲突模式 .
查看>>
find 命令-exec,xargs用法的一点总结
查看>>
庞俊英:OpenFlow与VxLAN在云网络的应用
查看>>
我的友情链接
查看>>
Scala学习笔记(9)-函数和闭包
查看>>
Hibernate中的Inverse和cascade属性配置
查看>>
jQuery.extend 函数详解
查看>>
今天开始学习php了
查看>>
css(解决背景图随页面变小后,部分内容无背景)
查看>>