Listbox のデータを異なる 2 サイズでバインドすることは可能ですか?
Windows phone でクリック アンド ホールド イベントを使用して、次の形式でリストボックス バインディング データを表示したいと考えています。
Listbox のデータを異なる 2 サイズでバインドすることは可能ですか?
Windows phone でクリック アンド ホールド イベントを使用して、次の形式でリストボックス バインディング データを表示したいと考えています。
これは可能です。2 つの異なる 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>