wxpython - 需要调整 GUI 的帮助

发布于 2024-11-14 16:51:10 字数 490 浏览 2 评论 0原文

正在编写一个程序(在这里找到,文件较长,因此将它们发布在这里会占用很多空间) 。我的问题是 gui_step_1.py 的主面板偏离了它应该在的中心位置。

我已经尝试了很多事情,包括将其添加到 sizer 中以理顺它,但由于我的程序结构(MVC),我无法做到这一点,因为我在 gui_step_1.py 中实例化 controller controller不继承panel、frame或者任何与wx相关的东西(只是一个普通的类)。

一旦你看到我的程序,我需要的就很明显了:我需要以窗口为中心的 step1gui_step_1.py 中的 controller 实例)。

感谢您的帮助!

Working on a program (found here, the files are longer, so posting them here would take up much space). My problem with it is that the main panel of gui_step_1.py is way off center from where it should be.

I have tried numerous things, including adding it to a sizer to straighten it out, but because of my program structure (MVC) I can't do that because I instantiate controller in gui_step_1.py and controller does not inherit panel, frame, or anything related to wx (just a normal class).

What I need is pretty obvious once you see my program: I need step1 (instance of controller in gui_step_1.py) centered on the window.

Thanks for the help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时常饿 2024-11-21 16:51:10

我没有对所有内容进行排序,但我认为 gui_step_1.pycontroller 类中的 self.v.Center() 正在重新定位面板位于其框架内,而不是使框架居中。摆脱它,一切似乎都井井有条。如果您想将面板添加到 sizer,您可能必须从 controller 类中检索它。

不过,您在界面上遇到的问题更多的是设计问题的症状。您的视图框架创建两个不同类的实例,这两个类创建作为框架子级的小部件的实例。尽管您尝试使用 MVC,但它不应该改变向框架添加小部件的方式。

I didn't sort through everything, but I think self.v.Center() in your controller class in gui_step_1.py is repositioning a Panel within its Frame instead of centering the Frame. Get rid of that, and things seem to line up properly. If you want to add the panel to a sizer, you'll probably have to retrieve it from the controller class.

The trouble you're having with the interface is more a symptom of a design problem, though. Your view frame creates instances of two different classes, which create instances of widgets which are children of the frame. Although you're trying to use MVC, it shouldn't be changing the way you add a widget to a frame.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文