关于TreeView的拖放事件,下面是我的代码,我想问一下为什么Button就转换...

发布网友 发布时间:2024-10-11 21:56

我来回答

3个回答

热心网友 时间:5分钟前

private void treeView1_ItemDrag(object sender, ItemDragEventArgs e)
{
TreeNode tn = e.Item as TreeNode;
if ((e.Button == MouseButtons.Left) && (tn != null) && (tn.Parent != null)) //根节点不允许拖放操作。
{
this.treeView1.DoDragDrop(tn, DragDropEffects.Copy | DragDropEffects.Move | DragDropEffects.Link);
}
}

热心网友 时间:6分钟前

顺便帮顶一下

热心网友 时间:2分钟前

其实 我也不知道 顺便帮顶一下~~

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com