Winform 列表框未正确锚定

发布于 2024-12-09 12:34:40 字数 259 浏览 0 评论 0原文

我不知道这是否会影响其他控件,但对于列表框和选中列表框,列表框的底部仅以一定的间隔随表单调整大小。

假设我有一个表单和一个列表框,该列表框与表单边缘的所有边都有 2px 间隙,并锚定在所有四个边上。现在,如果我拖动调整表单大小,列表框底部和表单底部内边缘之间底部的 2px 间隙将变为 5-6px 间隙,然后在 7px 间隙处,它“弹回到”2px 间隙。

本质上,它并没有随着表单平滑地调整大小,而是调整每个 X 像素的大小,以便您可以看到列表框底部“跳跃”。只影响底部。

I don't know if this affects other controls but for listboxes and checkedlistboxes, the bottom of the listbox only resizes with the form at certain intervals.

Say I have a Form and a listbox that has a 2px gap from the edge of the form, on all sides and anchored on all four sides. Now if I drag-resize the form, the 2px gap on the bottom between the bottom of the listbox and the bottom inner edge of the form becomes like 5-6px gap then at 7px gap, it "snaps back" to the 2px gap.

Essentially, it's not resizing with the form smoothly, it resizes every X pixels so you can see the listbox bottom "jumping". Only affects the bottom.

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

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

发布评论

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

评论(2

没企图 2024-12-16 12:34:40

该控件正在尝试调整自身大小,以便仅在垂直轴上显示完整的项目。它避免切断任何显示的项目。

为了防止这种情况并允许设置任意高度,请设置列表控件的 IntegralHeight 属性设置为 false。

The control is attempting to resize itself so only complete items are displayed in the vertical axis. It's avoiding cutting off any displayed item.

To prevent this and to allow setting any height, set your list control's IntegralHeight property to false.

甜扑 2024-12-16 12:34:40

将 IntegralHeight 属性设置为 false。

Set the IntegralHeight property to false.

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