2

我有一个多选的 ListBox。我正在其中进行拖放操作。我使用 Ctrl+A 选择所有项目。但是,一旦我单击一个项目开始拖动,项目就会被取消选择。有没有办法在鼠标上选择/取消选择列表框项。

4

1 回答 1

4

ListBoxItem 覆盖其OnMouseLeftButtonDown并调用包含 ListBox 的处理选择的方法。因此,如果您想将鼠标放在选定的列表框项目上并启动拖动,则需要在 ListBoxItem 上发生这种情况之前开始拖动。因此,您可以尝试处理 ListBox 上的PreviewMouseLeftButtonDown并检查 e.OriginalSource。如果那是 ListBoxItem 或列表框项中的元素(您需要沿着可视树向上走),那么您可以启动拖动操作。例如

private void OnPreviewLeftButtonDown(object sender, MouseButtonEventArgs e)
{
    var source = e.OriginalSource as DependencyObject;

    while (source is ContentElement)
        source = LogicalTreeHelper.GetParent(source);

    while (source != null && !(source is ListBoxItem))
        source = VisualTreeHelper.GetParent(source);

    var lbi = source as ListBoxItem;

    if (lbi != null && lbi.IsSelected)
    {
        var lb = ItemsControl.ItemsControlFromItemContainer(lbi);
        e.Handled = true;
        DragDrop.DoDragDrop(....);
    }

}
于 2012-06-12T02:10:57.923 回答