码迷,mamicode.com
首页 > 其他好文 > 详细

自定义的 ListBoxItem 自适应ListBox的宽度

时间:2020-02-07 22:43:20      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:宽度   自适应   lock   targe   www   abs   property   val   contain   

主要是要设置HorizontalContentAlignment的值,而不是HorizontalAlignment

 <ListBox x:Name="xxx">
  <ListBox.ItemContainerStyle>
     <Style TargetType="ListBoxItem">
       <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
     </Style>
   </ListBox.ItemContainerStyle>
   <ListBox.ItemTemplate>
     <DataTemplate>
       <StackPanel>
         <Grid>
           <TextBlock Text="www.tech-labs.net" HorizontalAlignment="Left"/>
           <TextBlock Text="维思实验室" HorizontalAlignment="Right"/>
         </Grid>
       </StackPanel>
     </DataTemplate>
   </ListBox.ItemTemplate>
  </ListBox>

自定义的 ListBoxItem 自适应ListBox的宽度

标签:宽度   自适应   lock   targe   www   abs   property   val   contain   

原文地址:https://www.cnblogs.com/GarsonZhang/p/12274815.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!