0

我已将 ListView 添加到 Metro Style Blank 应用程序中。添加到 ListView 的是 3 个字符串。我想更改 LineHeight ,但找不到属性。下面是我的 xaml 代码。

 <Grid Background="{StaticResource ApplicationPageBackgroundBrush}">
    <ListView HorizontalAlignment="Left" Height="277.167" Margin="235.51,161,0,0" VerticalAlignment="Top" Width="100" RenderTransformOrigin="0.5,0.5" UseLayoutRounding="False" d:LayoutRounding="Auto">
        <ListView.RenderTransform>
            <CompositeTransform SkewX="-0.338" TranslateX="-0.327"/>
        </ListView.RenderTransform>
        <x:String>test 1</x:String>
        <x:String>Test2</x:String>
        <x:String>Test3</x:String>
   </ListView>
</Grid>

如何减少、增加 ListView 框中字符串的行高?我想减少线条之间的空间。

谢谢

4

1 回答 1

0

尝试编辑 ItemContainerTemplate,然后使用可用的属性,如边距和填充。在此处查看我的答案: Windows8 中的 WPF ComboBox 自定义

如果您需要任何帮助,请告诉我。

于 2013-03-20T17:00:53.417 回答