我正在尝试研究如何将 UserControls 列表数据绑定到 WrapPanel,但我没有太多的运气四处搜索。
我对 WPF 很陌生(来自 WinForms),目前我在运行时将 UserControls 添加为子项。是否有任何解决方案,因为我知道 WrapPanels 不支持数据绑定。
我正在尝试研究如何将 UserControls 列表数据绑定到 WrapPanel,但我没有太多的运气四处搜索。
我对 WPF 很陌生(来自 WinForms),目前我在运行时将 UserControls 添加为子项。是否有任何解决方案,因为我知道 WrapPanels 不支持数据绑定。
尝试这样的事情:
<ListBox ScrollViewer.HorizontalScrollBarVisibility="Disabled" ItemsSource="{Binding YourSource}">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel IsItemsHost="True" />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
...
</ListBox>
如果您不需要选择的东西,您可以尝试使用 ItemsControl。
<ItemsControl ItemsControlScrollViewer.HorizontalScrollBarVisibility="Disabled" ItemsSource="{Binding YourSource}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel IsItemsHost="True" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
...
</ItemsControl>