Использование scatterview в качестве региона с Призмой вызывает исключение

Я играю с Surface и пытаюсь использовать scatterview в качестве области модуля.

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

Что происходит, когда я запускаю приложение, возникает исключение. С небольшим отражением я добрался до места, где происходит исключение:

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 возвращает ноль, вызывая исключение.

Есть мысли о том, как преодолеть эту ситуацию?

1 ответ

Я думаю, что это известная проблема с ScatterView. Мы знаем об этой проблеме и исправим ее в будущем. Если это та же проблема, которую мы видели, это связано с тем, что ItemsSource ScatterView является IList<foo> или какой-то другой "общий" список. Если бы вы могли изменить свой ItemSource на простой IList (не IList<foo>Я думаю, что это решит вашу проблему.

Надеюсь, это поможет,

-Луис Кабрера, инженер-разработчик программного обеспечения, Microsoft Surface

Другие вопросы по тегам