WPF Image Gallery

前端 未结 3 1629
隐瞒了意图╮
隐瞒了意图╮ 2021-02-06 09:28

I\'m going to be driving a touch-screen application (not a web app) that needs to present groups of images to users. The desire is to present a 3x3 grid of images with a page f

3条回答
  •  无人及你
    2021-02-06 10:04

    You might want to use an ItemsControl/ListBox and then set a UniformGrid panel for a 3x3 display as its ItemsPanel to achieve a proper WPF bindable solution.

     
        
          
            
           
        
      
      
      
      
      
      
      
      
      
     
    

    You need to set your collection of Images as ItemsSource binding if you are looking for a dynamic solution here. But the question is too broad to give an exact answer.

提交回复
热议问题