是否可以在 Listbox 中以不同的 2 大小绑定数据?
我想在 Windows Phone 中使用单击并按住事件以下列格式显示列表框绑定数据。
这个有可能。您需要创建两个不同的 DataTemplates 并使用 DataTemplateSelector 的技巧
将一个Windows Phone Toolkit添加到您的项目中,并定义一个列表框,如下所示:
<ListBox Source="{ set your binding here}">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<toolkit:WrapPanel/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemsPannel>
<ListBox.ItemTemplate>
define your DataTemplates and dataTempleteSelectors here
</ListBox.ItemTemplate>