3
我正在開發一個WPF項目。我需要自定義Listview的水平滾動條,如降低其高度,更改背景等。我如何實現這一目標?ListView滾動條樣式
利用這一點,似乎沒有任何效果:
<ListView>
<ListView.Resources>
<Style TargetType="ScrollBar">
<Setter Property="Height" Value="10"/>
</Style>
</ListView.Resources>
</ListView>
設置'Background'對我的作品在你的風格。 ' ' –
是的,但是如何降低高度?寬度,水平滾動條的背景正在工作,但無法降低其高度 – androider