我有一個列表框,我使用ListBox.ItemsPanel - WrapPanel。WPF列表框包裝
<ListBox ItemsSource="{Binding Path=Applets}" Margin="10,92,10,10" ScrollViewer.HorizontalScrollBarVisibility="Disabled" >
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel Orientation="Vertical" IsItemsHost="True">
</WrapPanel>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>...
我想有wrappanel有一個行爲,使得該項目填補了向右的寬度更寬,並在需要時由窗口窄包。我玩過它,但正確的組合避開了我。有沒有人有建議?
我的下一個目標是能夠對項目進行重新排序/排序並進行渲染更新。
TIA
哦,是的 - 它的工作原理。非常感謝。總的來說,我必須說...這是最有用的網站之一。謝謝大家。 – Jeff 2010-11-09 23:27:05