在最后一项和列表框末尾之间添加空格

发布于 2024-11-08 21:34:56 字数 184 浏览 0 评论 0原文

我有一个可容纳数百项的列表框。当用户添加新项目时,它将位于列表的底部,并且他们将对其进行编辑。

有没有办法在最后一个项目和列表框末尾之间添加一些空白,以便用户可以向上滚动最后一个项目?

就像您在 Visual Studio 代码编辑器中所做的那样,您可以向下滚动文本末尾到某个点并将最后一行向上移动。

谢谢

I have a list box that will hold several hundred items. When the user adds a new item, it will be at the bottom of the list and they will be editing it.

Is there any way to add some white space between the last item and the end of the list box, so the user can scroll the last item up?

Just like you can do in the visual studio code editor, you can scroll down past the end of the text to a certain point and move the last line up.

Thanks

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

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

发布评论

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

评论(1

再浓的妆也掩不了殇 2024-11-15 21:34:56

将 ItemsPanel 设置为 StackPanel 并为 StackPanel 添加下边距。

<ListBox>
        <ListBox.ItemsPanel>
            <ItemsPanelTemplate>
                <StackPanel Margin="0,0,0,50"/>
            </ItemsPanelTemplate>
        </ListBox.ItemsPanel>
    </ListBox>

Set the ItemsPanel to a StackPanel and add a bottom margin to the StackPanel.

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