发布网友 发布时间: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分钟前
其实 我也不知道 顺便帮顶一下~~