Winform 列表框未正确锚定
我不知道这是否会影响其他控件,但对于列表框和选中列表框,列表框的底部仅以一定的间隔随表单调整大小。
假设我有一个表单和一个列表框,该列表框与表单边缘的所有边都有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该控件正在尝试调整自身大小,以便仅在垂直轴上显示完整的项目。它避免切断任何显示的项目。
为了防止这种情况并允许设置任意高度,请设置列表控件的
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.将 IntegralHeight 属性设置为 false。
Set the IntegralHeight property to false.