以下のようにリストボックスを作成する必要があります。複数列リストボックス
[x] [x] ^
[x] [x] |
[x] [x] | ----> this is a side scroll and the [x] are pictures
[x] [x] |
どうすればいいですか?ここに私のコードがあります。
<controls:PanoramaItem Header="New one" Name="Pan1" >
<ListBox Margin="0,0,-12,0" x:Name="NewTitlesListBox"
ItemsSource="{Binding NewPicturesLocal}"
SelectionChanged="NewListBoxSelectionChanged">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Margin="0,0,0,20">
<Image Width="110" CacheMode="BitmapCache" Source="{Binding ThumbURL}"
Margin="12,0,9,0"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</controls:PanoramaItem>
この結果:
[x] ^
[x] |
[x] | ----> this is a side scroll and the [x] are pictures
[x] |
私はグリッド(複数の列を追加する)とし、データテンプレートでそれをやろうとしましたが、解決策を見つけることができませんでした。
あなたのソリューションを投稿うれしいに対する解決策となります。私はこれが他の誰かのために便利だろうと確信しています。 – Danexxtone