标签: wpf xaml drag-and-drop command
我有一个按钮,单击按钮时,我必须执行拖放功能。
DragDrop.DoDragDrop(source, data, DragDropEffects.Copy);
其中源是边框,数据是列表(如果有)。当我单击命令按钮时,我必须将数据中的所有项目删除以定位。
<Button Command={Binding ButtonClick}>
您能帮忙吗?