用于在屏幕上定位窗口的类

发布于 2024-10-11 01:55:26 字数 632 浏览 2 评论 0原文

我是 Python 新手,这是我的第一堂 Python 课。我在Windows 7上使用PyQt4框架。

我不知道下面几行代码是否正确编写。我想将其进一步修改为:

  1. 在参数中,我想传递屏幕上另一个打开的窗口(.py)的名称。
  2. 我将传递 x 坐标、y 坐标。以及要在屏幕上定位的窗口的名称。

如何修改代码来满足这些要求?

进一步编辑

class PositionWindow:
    def __init__(self, xCoord, yCoord, windowName, parent = None):
      self.x = xCoord
      self.y = yCoord
      self.wName = windowName;

      def center(self):
        screen = QtGui.QDesktopWidget().screenGeometry()
        size = self.geometry()
        self.move((screen.width()-size.width())/2, (screen.height()-size.height())/2)

I am new to Python and this is my fist Python class. I am using PyQt4 framework on Windows 7.

I don't know whether the few lines of code below is correctly written or not. I want to modify it further as:

  1. In the arguments, I want to pass the name of another opened Window (.py) on the screen.
  2. I will be passing the x-coord., y-coord. and the name of the window to position on the screen.

How to modify the code to fulfill these requirements?

Edited Further

class PositionWindow:
    def __init__(self, xCoord, yCoord, windowName, parent = None):
      self.x = xCoord
      self.y = yCoord
      self.wName = windowName;

      def center(self):
        screen = QtGui.QDesktopWidget().screenGeometry()
        size = self.geometry()
        self.move((screen.width()-size.width())/2, (screen.height()-size.height())/2)

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

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

发布评论

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

评论(2

赴月观长安 2024-10-18 01:55:26

你不能只使用window.setGeometry(x_pos, y_pos, width, height)吗?在这种情况下,类似乎太过分了。

请参阅此处获取文档。

Can't you just use window.setGeometry(x_pos, y_pos, width, height)? A class seem overkill in this case.

See here for documentation.

奢华的一滴泪 2024-10-18 01:55:26

您还可以使用

def main():
    app = QtGui.QApplication(sys.argv)
    gui = Program()
    gui.move(380, 170)
    gui.show()
    app.exec_()

gui.move() 将您的应用程序定位到括号中指定的坐标

You can also use

def main():
    app = QtGui.QApplication(sys.argv)
    gui = Program()
    gui.move(380, 170)
    gui.show()
    app.exec_()

the gui.move() will position your application to the stated coordinates in the parenthesis

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