ItemsPanelTemplate

用以定义集合控件的容器外观,如ListBox,Combox 等等
使用一个自定义的ListBox用以说明,其默认外观是上下排列,这里修改成横向排列


    
        
            
                
                
            
            
                
                
            
            
            
            
        
    
    
        
    


    

定义一个ItemsPanelTemplate,设置方向为Horizontal
在ListBox中指定ItemsPanel

效果

ItemsPanelTemplate_第1张图片
1

常见的条目控件有:ListBox,Menu,StatusBar等(默认纵向排列)

示例代码

https://github.com/zLulus/NotePractice/tree/dev3/WPF/WpfDemo/Template/ItemsPanelTemplate

你可能感兴趣的:(ItemsPanelTemplate)