WPF Databinding stackpanel

前端 未结 2 2104
野性不改
野性不改 2020-12-13 10:12

Im a beginner in WPF programming, coming from .NET 2.0 C#.

Im trying to make a horizontal StackPanel which should be filled with data from a table in a

2条回答
  •  误落风尘
    2020-12-13 10:39

    Julien's answer is correct for your written description, however, looking at your XAML, it appears you are looking for something like the following:

    
        
            
            
    
    
    
        
            
                
            
        
    
    

    You definately need an ItemsControl (or some derivation of) to bind your source to. Then you can change the the orientation by setting it's items panel (which I believe is a VirtualizingStackPanel with Vertical orientation by default) so just set it to a VirtualizingStackPanel with Horizontal Orientation. Then you can set the ItemsTemplate for each of your items to the layout you desire (an image stacked on top of text bound from your database).

提交回复
热议问题