4

我正在构建一个 WPF 用户控件,其中包含一个列表,其项目显示为图标和文本。但是,文本有不同的长度,我希望它们水平滚动。相反,我希望项目与用户控件具有相同的宽度,并且文本显示为包裹(因此具有垂直滚动)。

这是我的 XAML

<UserControl x:Class="Demo.NotificationsWidget"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
   <Border CornerRadius="2" 
           BorderThickness="1" BorderBrush="LightGray"
           Background="White">
      <DockPanel LastChildFill="True">
         <TextBlock Text="Alerts" DockPanel.Dock="Top" Margin="5" FontSize="15"/>

         <ListBox Name="alertsList" DockPanel.Dock="Bottom" Margin="5"
               Grid.IsSharedSizeScope="True"
               HorizontalContentAlignment="Stretch"
               BorderThickness="0" 
               ItemsSource="{Binding}">
            <ListBox.ItemTemplate>
               <DataTemplate>
                  <Border BorderThickness="0,1,0,0" BorderBrush="Gray" Margin="5,0,5,5">
                     <Grid>
                        <Grid.ColumnDefinitions>
                           <ColumnDefinition SharedSizeGroup="col1" Width="40" />
                           <ColumnDefinition SharedSizeGroup="col2" Width="*" />
                        </Grid.ColumnDefinitions>

                        <Image Grid.Column="0" Source="{Binding Image}" Width="24" Height="24" Margin="5" />
                        <StackPanel Grid.Column="1" Orientation="Vertical" Margin="5">
                           <TextBlock Text="{Binding Title}" TextWrapping="Wrap" FontWeight="Bold" />
                           <TextBlock Text="{Binding Text}" TextWrapping="Wrap" />
                        </StackPanel>
                     </Grid>
                  </Border>
               </DataTemplate>
            </ListBox.ItemTemplate>
         </ListBox>
      </DockPanel>
   </Border>
</UserControl>

这是一个带有包含此用户控件的窗口的图像。请注意,控件宽度随窗口宽度而变化。

在此处输入图像描述

我想要的是当项目宽度超过列表宽度时,文本被换行(并且我得到列表的垂直滚动)。

我尝试ScrollViewer.HorizontalScrollBarVisibility="Disabled"为列表框添加,但唯一的结果是滚动被隐藏。列表项仍然具有相同的宽度(比控件的宽度长)。

如果我不够清楚,看看 twitter 如何在列表中显示推文,这就是我想要做的。谢谢。

更新:这基本上是我想要实现的目标:

在此处输入图像描述

我可以通过显式设置数据模板网格中每一列的宽度来做到这一点。

<Grid.ColumnDefinitions>
   <ColumnDefinition SharedSizeGroup="col1" Width="40" />
   <ColumnDefinition SharedSizeGroup="col2" Width="200" />
</Grid.ColumnDefinitions>

但是,重要的是列表和它的项目会在窗口调整大小时自动调整大小。

4

2 回答 2

3

在 TextBlock 上尝试:

Width="{Binding ElementName=alertsList, Path=ActualWidth}"> 

如果您需要脱掉一些,请参阅我对这个问题的回答

GridViewColumn 宽度调整

于 2012-11-22T14:48:27.600 回答
2

我能够通过将 替换GridDockPanel.

        <ListBox.ItemTemplate>
           <DataTemplate>
              <Border BorderThickness="0,1,0,0" BorderBrush="Black" Margin="0,0,0,5">
                 <DockPanel LastChildFill="True">
                    <Image DockPanel.Dock="Left" Source="{Binding Image}" Width="24" Height="24" Margin="0,5,0,5"
                           VerticalAlignment="Top"/>

                    <StackPanel DockPanel.Dock="Right" Orientation="Vertical"
                                Margin="5,2,0,0"
                                VerticalAlignment="Top">
                       <TextBlock Text="{Binding Title}" TextWrapping="Wrap" FontWeight="Bold" />
                       <TextBlock Text="{Binding Text}" TextWrapping="Wrap" FontSize="12" Margin="0,2,0,0" />
                    </StackPanel>
                 </DockPanel>
              </Border>
           </DataTemplate>
        </ListBox.ItemTemplate>
于 2012-11-23T07:45:58.050 回答