向 pythoncard 应用程序添加滚动条
pythoncard 尚不支持滚动窗口作为应用程序的主框架。 如何向主框架(背景)添加滚动条?
scrollingwindow as main frame for the application is not supported yet for pythoncard. how can i add scrollbars to main frame(background)?
pythoncard 尚不支持滚动窗口作为应用程序的主框架。 如何向主框架(背景)添加滚动条?
scrollingwindow as main frame for the application is not supported yet for pythoncard. how can i add scrollbars to main frame(background)?
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
我从未使用过 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.