0

我正在尝试创建一个ListViewItem看起来像这样的模板,但我没有取得太大进展。

这是我到目前为止创建的样式:

<ListView.ItemTemplate>
    <DataTemplate>
        <Grid>
            <Border HorizontalAlignment="Stretch" Margin="1.5" CornerRadius="5" BorderThickness="1,1,1,1" BorderBrush="#FF997137">
                <Border.Background>
                    <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
                        <GradientStop Color="#FF4B4B4B" Offset="0" />
                        <GradientStop Color="#FF8F8F8F" Offset="1" />
                    </LinearGradientBrush>
                </Border.Background>
            </Border>
            <StackPanel Orientation="Horizontal" >
                <Image HorizontalAlignment="Left" Width="32" Source="/Images/stop.png" Stretch="Fill" Height="32" />
                <TextBlock Foreground="#FFECAD25" TextWrapping="Wrap" Width="150" >
                    This is a user control. The animation uses the attached BalloonShowing event.
                </TextBlock>
                <StackPanel Orientation="Vertical" >
                    <Image HorizontalAlignment="Right" Margin="0,10,5,0" VerticalAlignment="Top" Width="16" Height="16" Source="/Images/Close.png" Stretch="Fill"
                           Opacity="0.4" ToolTip="Delete" x:Name="Delete" />
                    <Image HorizontalAlignment="Right" Margin="0,5,5,0" VerticalAlignment="Top" Width="16" Height="16" Source="/Images/Close.png" Stretch="Fill"
                           Opacity="0.4" ToolTip="Edit" x:Name="Edit" />
                </StackPanel>
            </StackPanel>
        </Grid>
    </DataTemplate>
</ListView.ItemTemplate>

是否可以扩展图像/图标下方的文本?

4

2 回答 2

0

我不相信有任何开箱即用的方法可以使用“TextBlock”来做到这一点。

但是,如果您能够使用该FlowDocument控件,这里有一些选项:answer 1answer 2

于 2012-08-25T16:47:32.657 回答
0

据我所知,没有。至少不是简单的图像和文本块。FlowDocument 似乎是一个很好的解决方案,请查看此链接以获取更多信息: http ://dotnetslackers.com/articles/wpf/WPFFlowDocumentsAndImages.aspx

于 2012-08-25T16:48:34.727 回答