PyQt - 窗口的位置

时间:2016-08-19 18:59:52

标签: python python-3.x user-interface pyqt pyqt5

def location_on_the_screen(self):
    fg = self.frameGeometry()
    sbrp = QDesktopWidget().availableGeometry().bottomRight()
    fg.moveBottomRight(sbrp)
    self.move(fg.topLeft())

我无法将窗口放在屏幕的右下角。 frameGeometry()不能正常工作。请帮助我,我该怎么办?

3 个答案:

答案 0 :(得分:3)

以下是Windows的可能解决方案:

import sys

from PyQt5.QtWidgets import QApplication, QWidget, QDesktopWidget


class MyWidget(QWidget):

    def __init__(self):
        super().__init__()
        self.setFixedSize(400, 300)

    def location_on_the_screen(self):
        ag = QDesktopWidget().availableGeometry()
        sg = QDesktopWidget().screenGeometry()

        widget = self.geometry()
        x = ag.width() - widget.width()
        y = 2 * ag.height() - sg.height() - widget.height()
        self.move(x, y)

if __name__ == '__main__':
    app = QApplication(sys.argv)
    widget = MyWidget()
    widget.location_on_the_screen()
    widget.show()
    app.exec_()

答案 1 :(得分:0)

我认为你的窗口'是QWidget的子类。如果是这样,以下内容应符合您的需求:

import sys

from PyQt5.QtWidgets import QApplication, QWidget, QDesktopWidget


class MyWidget(QWidget):

    def __init__(self):
        super().__init__()
        self.setFixedSize(400, 300)

    def location_on_the_screen(self):    
        screen = QDesktopWidget().screenGeometry()
        widget = self.geometry()
        x = screen.width() - widget.width()
        y = screen.height() - widget.height()
        self.move(x, y)


if __name__ == '__main__':
    app = QApplication(sys.argv)
    widget = MyWidget()
    widget.location_on_the_screen()
    widget.show()
    app.exec_()

答案 2 :(得分:0)

from PyQt5.QtWidgets import QMainWindow, QLabel
from PyQt5.QtWidgets import QGridLayout, QWidget, QDesktopWidget
#------------------------------   
def center_window():
   qtRectangle = self.frameGeometry()
   centerPoint = QDesktopWidget().availableGeometry().center()
   qtRectangle.moveCenter(centerPoint)
   self.move(qtRectangle.topLeft())
   #---------------------------------
if __name__ == '__main__':
    app = QApplication(sys.argv)
    widget = MyWidget()
    widget.window_center():
    widget.show()
    app.exec_()