WPF实现ListBox实现多列自定义内容显示

编程开发 C#教程wpfListBox自定义列数

WPF实现ListBox实现多列自定义列显示

上代码:ListBox多列自动换行的前端XAML实现代码 很简单

<ListBox MaxHeight="100" Name="ColourGamutList" 
	ItemsSource="{Binding}"  ScrollViewer.HorizontalScrollBarVisibility="Disabled">
                                    <ListBox.ItemsPanel>
                                        <ItemsPanelTemplate>
                                            <WrapPanel />
                                        </ItemsPanelTemplate>
                                    </ListBox.ItemsPanel>

                                    <ListBox.ItemTemplate>
                                        <DataTemplate>
                                            <WrapPanel>
                                                <!--内容区域-->
                                                <Label Width="90" Content="自定义内容" />
                                  
                                            </WrapPanel>
相关推荐
免责声明 本站部分内容来源于互联网公开资源分享学习交流,若其中有侵犯到了您的权益 还请邮件联系我方删除