FlowPanel垂直滚动
我有一个流程面板,我正在向其中动态添加用户控件。 我希望它继续添加它们并使用垂直滚动条。 相反,它将它们包裹到顶部并放置一个水平滚动条。 我确定我错过了一些东西,但是如何让它进行垂直滚动呢?
I have a flowpanel that I'm dynamically adding usercontrols to. I want it to keep adding them and use a vertical scroll bar. It instead wraps them to the top and places a horizontal scroll bar. I'm sure I'm just missing something, but how do I get it to do vertical scrolling?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我明白我做了什么。 我将流向设置为 TopDown,需要将其设置为 LeftRight。
有时我觉得自己像个白痴。
I figured out what I did. I had the flow direction set to TopDown, it needed to be set to LeftRight.
Sometimes I feel like a moron.
您必须启用滚动,写入:
flowLayoutPanel1.AutoScroll = true;
You have to enable scroll write this:
flowLayoutPanel1.AutoScroll = true;