将scatterview用作具有Prism的区域会引发异常

时间:2009-11-25 13:00:50

标签: prism pixelsense prism-2 scatterview

我正在使用Surface,我正在尝试使用散点图作为模块区域。

<s:ScatterView cal:RegionManager.RegionName="{x:Static common:RegionNames.MainRegion}"></s:ScatterView>

当我运行应用程序时,会抛出异常。通过litle反射,我到达了异常发生的地方:

DelayedRegionCreationBehavior尝试创建区域:

protected virtual IRegion CreateRegion(DependencyObject targetElement, string regionName)
{
    try
    {
        // Build the region
        IRegionAdapter regionAdapter = this.regionAdapterMappings.GetMapping(targetElement.GetType());
        IRegion region = regionAdapter.Initialize(targetElement, regionName);

        return region;
    }
    catch (Exception ex)
    {
        throw new RegionCreationException(string.Format(CultureInfo.CurrentCulture, Resources.RegionCreationException, regionName, ex), ex);
    }
}

然后ItemsControlRegionAdapter尝试设定区域目标ItemsSource

protected override void Adapt(IRegion region, ItemsControl regionTarget)
{
    bool itemsSourceIsSet = regionTarget.ItemsSource != null;

    #if !SILVERLIGHT
    itemsSourceIsSet = itemsSourceIsSet || (BindingOperations.GetBinding(regionTarget, ItemsControl.ItemsSourceProperty) != null);
    #endif

    if (itemsSourceIsSet)
    {
        throw new InvalidOperationException(Resources.ItemsControlHasItemsSourceException);
    }

    // If control has child items, move them to the region and then bind control to region. Can't set ItemsSource if child items exist.
    if (regionTarget.Items.Count > 0)
    {
        foreach (object childItem in regionTarget.Items)
        {
            region.Add(childItem);
        }
        // Control must be empty before setting ItemsSource
        regionTarget.Items.Clear();
    }

    regionTarget.ItemsSource = region.Views;
}

scatterview会触发ItemsSource更改的通知以及调用ItemsControlHelper的类:

internal static bool IsItemsReadOnly(ItemsControl itemsControl)
{
    IList itemsControlItems = GetItemsControlItems(itemsControl);
    if (!itemsControlItems.IsReadOnly)
    {
        return itemsControlItems.IsFixedSize;
    }
    return true;
}

我认为GetItemsControlItems返回null,导致异常。

有关如何克服这种情况的任何想法?

1 个答案:

答案 0 :(得分:0)

我认为这是ScatterView的一个已知问题。我们知道这个问题,并将在未来修复它。如果它是我们看到的相同问题,则它与ScatterView的ItemsSource是IList <foo>或其他一些“通用”列表有关。如果您可以将ItemSource更改为简单的IList(而不是IList <foo>),我认为这样可以解决您的问题。

我希望这有帮助,

-Luis Cabrera 软件设计工程师,Microsoft Surface