这听起来很奇怪,但有可能实现这样的事情吗?我想要的是具有标准行为的普通滚动条,除了它不能被用户点击,抓取和上下移动 - 它应该就在那里,在滚动内容时移动。
答案 0 :(得分:3)
<Grid>
<Grid.Resources>
<Style TargetType="ScrollBar">
<Setter Property="IsHitTestVisible" Value="False" />
</Style>
</Grid.Resources>
<ListBox Height="150">
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
</ListBox>
</Grid>