wxPython Splitter 窗口和面板
我正在尝试使用 2 GenericDirCtrl 构建一个文件选择器,它显示其下方选定目录中的文件。我的问题是将拆分器窗口放置为框架的子级并将包含控件的面板添加到拆分器窗口或将拆分器窗口嵌入到具有框架的面板子级的面板中更好?
I'm trying to construct a file selector using 2 GenericDirCtrl which display the files in the selected direcotry beneath them. My question is it better to place the splitter window as a child of the frame and add the Panel containing the control to the splitter window or embed the splitter window in a panel with the panel child of the frame?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我使用 SplitterWindow 时,我将其放在框架上,并为每一侧提供了自己的面板。但您应该能够同样轻松地执行:Frame、Panel、SplitterWindow。
这是一个通用示例:
When I used a SplitterWindow, I put it on the frame and gave each side their own panel. But you should be able to do: Frame, Panel, SplitterWindow just as easily.
Here's a generic example: