如何在Groupbox MFC中添加滚动条
我有一个包含文本框的组框。我想要更多的文本框在同一个组框中,而不增加组框的大小,如果这个组框有滚动,那么很容易实现这一点。如何给Groupbox添加滚动条?
I have a groupbox which contains text boxes. I want more text boxes with in the same groupbox with out increasing the size of groupbox, If this groupBox has scroll it will be easy to achieve this. How to add scrollbar to Groupbox?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的 MFC 时代已经有一段时间了,有点生疏了,但据我记得这是不可能的,但您可以通过在组框中放置一个无边框的子对话框来模拟这一点,然后将文本框放在上面。
My MFC days are a while ago and a bit rusty, but from what I remember this isn't possible, but you can emulate this by placing a borderless, child dialog within the group box and then place your text boxes onto that.