从列表底部删除项目时,列表框滚动条无法正确调整大小

发布于 2024-08-13 11:05:51 字数 200 浏览 7 评论 0原文

我有一个标准列表框。我可以使用输入文本框添加项目。我可以使用删除键或上下文菜单删除它们。当我从列表顶部删除项目时,滚动条会正确调整大小。如果我滚动到底部然后删除项目,滚动条的大小调整不正确,即大小不是增加而是减小。如果我使用鼠标或向上键向上滚动,那么它会显示正确的滚动条大小。此外,当我删除最后一个项目时,会留下一个空白空间,而不是向下移动的项目。有什么想法吗?谢谢。

I have a standard listbox. I can add items using a input textbox. I can delete them using delete key or context menu. When i delete the items from top of the list, scrollbar resizes properly. If i scroll to the bottom and then delete items the scrollbar resizes incorrectly i.e instead of increasing in size it decreases in size. If i scroll up using mouse or up key then it shows correct scrollbar size. Also when i delete last item, an empty space is left istead of items moving down. Any ideas? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

好倦 2024-08-20 11:05:51

尝试将此样式应用于 ListBox.ItemsContainerStyle:

<Style x:Key="OnTopItemContainerStyle"  TargetType="{x:Type ListBoxItem}">
    <Setter Property="VerticalAlignment" Value="Top"/>
    <Setter Property="VerticalContentAlignment" Value="Top"/>
</Style>

希望有帮助。

Try to apply this style to ListBox.ItemsContainerStyle:

<Style x:Key="OnTopItemContainerStyle"  TargetType="{x:Type ListBoxItem}">
    <Setter Property="VerticalAlignment" Value="Top"/>
    <Setter Property="VerticalContentAlignment" Value="Top"/>
</Style>

Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文