我在WPF的ListView中有一个文件列表。用户可以将文件拖到列表视图中,现在它们只是附加到列表的末尾。是否可以将文件插入到用户放置它的ListView中?
答案 0 :(得分:4)
WPF并非真正设计为以这种方式使用。虽然你可以蛮力将ListViewItem直接添加到ListView,但它真正应该工作的方式是你有一些类型的集合(ObservableCollection<FileInfo>
可以正常工作)并将ListView的ItemsSource属性绑定到该集合。
然后答案很简单。您可以使用带有索引的集合的Insert方法代替Add方法。
至于找到鼠标事件发生的ListViewItem,可以使用VisualTreeHelper.HitTest方法。
答案 1 :(得分:2)
从我的角度来看,当我使用模板化项目时,这有点棘手。我有点打架。我正在分享与DraggableListBox一起使用的用例。但我想同样的解决方案适用于ListBox控件。
第一个我创建了依赖项对象扩展,它能够为我提供ListItem元素:
public static class WpfDomHelper
{
public static T FindParent<T>(this DependencyObject child) where T : DependencyObject
{
DependencyObject parentObject = VisualTreeHelper.GetParent(child);
if (parentObject == null) return null;
T parent = parentObject as T;
if (parent != null)
return parent;
else
return FindParent<T>(parentObject);
}
}
然后我实现了Drop逻辑,它根据目标ListBoxItems的特定Drop Y位置插入(添加)项目:
private void Grid_Drop(object sender, DragEventArgs e)
{
int dropIndex = -1; // default position directong to add() call
// checking drop destination position
Point pt = e.GetPosition((UIElement)sender);
HitTestResult result = VisualTreeHelper.HitTest(this, pt);
if (result != null && result.VisualHit != null)
{
// checking the object behin the drop position (Item type depend)
var theOne = result.VisualHit.FindParent<Microsoft.TeamFoundation.Controls.WPF.DraggableListBoxItem>();
// identifiing the position according bound view model (context of item)
if (theOne != null)
{
//identifing the position of drop within the item
var itemCenterPosY = theOne.ActualHeight / 2;
var dropPosInItemPos = e.GetPosition(theOne);
// geting the index
var itemIndex = tasksListBox.Items.IndexOf(theOne.Content);
// decission if insert before or below
if (dropPosInItemPos.Y > itemCenterPosY)
{ // when drag is gropped in second half the item is inserted bellow
itemIndex = itemIndex + 1;
}
dropIndex = itemIndex;
}
}
.... here create the item .....
if (dropIndex < 0)
ViewModel.Items.Add(item);
else
ViewModel.Items.Insert(dropIndex, item);
e.Handled = true;
}
所以这个解决方案适用于我的模板DraggableListBoxView,我想相同的解决方案必须与标准的ListBoxView一起使用。祝你好运
答案 2 :(得分:1)
你可以这样做。这需要一些工作,但它可以完成。那里有几个演示,here is one on CodeProject。这个特别的是由 wpf大师称为Josh Smith。它可能不是你想要的,但它应该非常接近。