向 pythoncard 应用程序添加滚动条
pythoncard 尚不支持滚动窗口作为应用程序的主框架。 如何向主框架(背景)添加滚动条?
scrollingwindow as main frame for the application is not supported yet for pythoncard. how can i add scrollbars to main frame(background)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从未使用过 pythoncard,但在纯 wxpython 中,您可以将 ScrolledWindow 放入框架内,然后使用 sizer 来控制滚动条(假设 sizer 的内容不适合窗口)。 例如,这个短代码 snipit 将为您提供一个带有垂直滚动条的窗口。
Ive never used pythoncard but in pure wxpython you can just put a ScrolledWindow inside the frame, then use a sizer to controll the scrollbars (asumming the contents of the sizer dont fit in the window). Eg this short code snipit will give you a window with a vertical scrollbar.