如何检测滚动条何时出现? C#
有没有办法或事件来解决这个问题? 嗯,特别是它的流程布局面板
Is there a way or an event to solve this?
well specifically its for a flow layout panel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法或事件来解决这个问题? 嗯,特别是它的流程布局面板
Is there a way or an event to solve this?
well specifically its for a flow layout panel
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果您使用的是 FlowLayoutPanel,则可以检查面板中最后一个控件的
Bottom
属性是否大于面板的高度。或者,尝试检查
VerticalScroll.Visible
(我还没有尝试过,但它应该可以满足您的要求)If you're using a FlowLayoutPanel, you could check whether the
Bottom
property of the last control in the panel is more than the panel's height.Alternatively, try checking
VerticalScroll.Visible
(I haven't tried that, but it shoud do what you're looking for)当出现滚动条时,将触发 Resize 事件。当我进行美国农业部认证的定制节点绘画对接时,我需要知道。所以……我……做……这个……
When scroll bars appear, the Resize event is fired. As I do a U.S.D.A. Certified Buttload of Custom Node Painting, I need to know. So… I… do… this…