我正在尝试使用 WPF ListBox 创建图形控件。我创建了自己的 Canvas,它源自 VirtualizingPanel,我自己处理项目的实现和虚拟化。
然后将列表框的项目面板设置为我的自定义虚拟化画布。
我遇到的问题发生在以下情况:
- 首先创建 ListBox 项 A。
- ListBox Item B 创建在画布上 Item A 的右侧。
- ListBox Item A 首先被虚拟化(通过将其移出视图)。
- ListBox Item B 是第二个虚拟化的(再次通过将其移出视图)。
- 将 ListBox 项 A 和 B 显示在视图中(即:实现它们)
- 使用 Snoop,我检测到 ListBox 现在有 3 个项目,其中一个是位于 ListBox Item B 正下方的“DisconnectedItem”。
是什么导致了这个“DisconnectedItem”的创建?如果我先虚拟化 B,然后再虚拟化 A,则不会创建此项目。我的理论是,在 ListBox 中的其他项目之前虚拟化项目会导致子项断开连接。
使用具有数百个节点的图形时,问题更加明显,因为当我四处平移时,我最终得到了数百个断开连接的项目。
这是画布的部分代码:
/// <summary>
/// Arranges and virtualizes child element positionned explicitly.
/// </summary>
public class VirtualizingCanvas : VirtualizingPanel
{
(...)
protected override Size MeasureOverride(Size constraint)
{
ItemsControl itemsOwner = ItemsControl.GetItemsOwner(this);
// For some reason you have to "touch" the children collection in
// order for the ItemContainerGenerator to initialize properly.
var necessaryChidrenTouch = Children;
IItemContainerGenerator generator = ItemContainerGenerator;
IDisposable generationAction = null;
int index = 0;
Rect visibilityRect = new Rect(
-HorizontalOffset / ZoomFactor,
-VerticalOffset / ZoomFactor,
ActualWidth / ZoomFactor,
ActualHeight / ZoomFactor);
// Loop thru the list of items and generate their container
// if they are included in the current visible view.
foreach (object item in itemsOwner.Items)
{
var virtualizedItem = item as IVirtualizingCanvasItem;
if (virtualizedItem == null ||
visibilityRect.IntersectsWith(GetBounds(virtualizedItem)))
{
if (generationAction == null)
{
GeneratorPosition startPosition =
generator.GeneratorPositionFromIndex(index);
generationAction = generator.StartAt(startPosition,
GeneratorDirection.Forward, true);
}
GenerateItem(index);
}
else
{
GeneratorPosition itemPosition =
generator.GeneratorPositionFromIndex(index);
if (itemPosition.Index != -1 && itemPosition.Offset == 0)
{
RemoveInternalChildRange(index, 1);
generator.Remove(itemPosition, 1);
}
// The generator needs to be "reseted" when we skip some items
// in the sequence...
if (generationAction != null)
{
generationAction.Dispose();
generationAction = null;
}
}
++index;
}
if (generationAction != null)
{
generationAction.Dispose();
}
return default(Size);
}
(...)
private void GenerateItem(int index)
{
bool newlyRealized;
var element =
ItemContainerGenerator.GenerateNext(out newlyRealized) as UIElement;
if (newlyRealized)
{
if (index >= InternalChildren.Count)
{
AddInternalChild(element);
}
else
{
InsertInternalChild(index, element);
}
ItemContainerGenerator.PrepareItemContainer(element);
element.RenderTransform = _scaleTransform;
}
element.Measure(new Size(double.PositiveInfinity,
double.PositiveInfinity));
}