0
我改變了ListBox的模板。問題是,看垂直滾動條: http://img223.imageshack.us/img223/3391/lisbox.jpgListBox的模板有問題
如何使它位於圓整的ListBox?
我改變了ListBox的模板。問題是,看垂直滾動條: http://img223.imageshack.us/img223/3391/lisbox.jpgListBox的模板有問題
如何使它位於圓整的ListBox?
如果你想滾動條更左
讓它躺在部份內四捨五入的ListBox
保證金然後添加到列表框模板這樣您的ScrollViewer部分:
<ScrollViewer Focusable="false" Margin="0,0,20,0">
<ItemsPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
</ScrollViewer>
如果您希望ScrollViewer的背景與ListBox背景相匹配,您還需要替換此樣式模板。
<ScrollViewer Focusable="false" Template="{DynamicResource ScrollViewerControlTemplate1}" >
<ItemsPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
</ScrollViewer>