Remove Extra Space around Listbox

后端 未结 3 1267
野趣味
野趣味 2021-01-17 10:26

I have some extra space around my Listbox. It\'s 1px wide, but I don\'t know where it comes from...

\"The

3条回答
  •  抹茶落季
    2021-01-17 11:03

    This is the default control template for ListBox:

        
            
                
                    
                
            
            
                
                    
                
                
                    
                
            
        
    

    Notice the Padding="1" on Border named Bd. Since this is harcoded and not template bound, you can either retemplate the ListBox and set the padding to 0, or since Padding on the ScollViewer has a TemplateBinding to the Padding of the ListBox, you can set the Padding on your ListBox to -1 to offset the padding on the border.

提交回复
热议问题