有谁知道 Windows Phone 8 SDK(不是 WP 7.5 的 Windows Phone 工具包)中的 Longlistselector 控件是否具有 ItemsPanel 属性或等效属性?
ListBox 控件具有这样的属性,我用它来将项目包装在 WrapPanel 中。
<ListBox>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<toolkit:WrapPanel/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
这里有一个答案:How to wrap ItemsPanel in LongListSelector? 但这指的是在工具包中找到的 Longlistselector,而不是在 WP8 SDK 中(我无权访问源代码来使用上述解决方案)。
有人有想法吗?