我有一个包含两个ListBox控件的页面。该页面包含基于项目类别的项目列表。
有一个类别的标题,后跟一个ListBox,其中包含该类别的所有项目,然后是另一个标题,后面跟着该类别的项目列表等。
我遇到的问题是每个ListBox都是独立滚动的。我希望整个页面滚动(它做),但不是每个单独的ListBox。 ListBox控件会自动增长到其内容,因此无需滚动它们。这可能吗?
答案 0 :(得分:42)
要禁用滚动,您只需要设置ScrollViewer.VerticalScrollBarVisibility="Disabled"
(如果您需要禁用水平滚动,请使用ScrollViewer.HorizontalScrollBarVisibility="Disabled"
)。
这是一个简单的例子:
<ListBox Height="200" ScrollViewer.VerticalScrollBarVisibility="Disabled">
<ListBoxItem >
<Button Content="item1" />
</ListBoxItem>
<ListBoxItem >
<Button Content="item2" />
</ListBoxItem>
<ListBoxItem >
<Button Content="item3" />
</ListBoxItem>
<ListBoxItem >
<Button Content="item4" />
</ListBoxItem>
<ListBoxItem >
<Button Content="item5" />
</ListBoxItem>
</ListBox>
我希望这会回答你的问题。