簡體   English   中英

如何在主窗口的中心位置打開 QDialog 小部件

[英]how to open a QDialog widget on the center position of the main window

我正在尋找一種在主窗口的中心位置打開QDialog widget的方法。 我已將主窗口的位置設置為居中。

 centerPoint = qtw.QDesktopWidget().availableGeometry().center()
        qtRectangle.moveCenter(centerPoint)

跟隨對話框小部件到主窗口的位置,我已將其設置為

msgb.move(self.pos().x(), self.pos().y())

對話窗口跟隨主窗口的位置,但它在主窗口的左上角打開,如何將其位置更改為主窗口的中心?

#!/usr/bin/env python

"""
startscreen

base window remit to specific tests

"""

import os
import sys
from PyQt5 import QtWidgets as qtw
from PyQt5 import QtCore as qtc




class Startscreen(qtw.QWidget):
    '''
    remit to one of three tests if widgets toggled/clicked
    hide its self after
    '''

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        # your code will go here

        # interface

        # position
        qtRectangle = self.frameGeometry()
        centerPoint = qtw.QDesktopWidget().availableGeometry().center()
        qtRectangle.moveCenter(centerPoint)
        self.move(qtRectangle.topLeft())
        # size
        self.resize(700, 410)
        # frame title
        self.setWindowTitle("Lambda")

        # heading
        heading_label = qtw.QLabel("Lambda Version 1.0")
        heading_label.setAlignment(qtc.Qt.AlignHCenter)

        # active user
        activeuser_label = qtw.QLabel('Benutzer: ' + os.getlogin())
        activeuser_label.setStyleSheet("background-color: rgb(234, 246, 22)")
        activeuser_label.setAlignment(qtc.Qt.AlignRight | qtc.Qt.AlignTop)

        # groubox for widget positioning
        self.groupbox = qtw.QGroupBox(self)
        # groupbox.setAlignment(qtc.Qt.AlignHCenter)

        # layout and widgets
        vlayout = qtw.QVBoxLayout()
        vlayout.setAlignment(qtc.Qt.AlignHCenter)

        self.particlesize_radiobutton = qtw.QRadioButton("test1")
        vlayout.addWidget(self.particlesize_radiobutton)
        self.dimensionalchange_radiobutton = qtw.QRadioButton("test2")
        vlayout.addWidget(self.dimensionalchange_radiobutton)
        self.dimensionalchangecook_radiobutton = qtw.QRadioButton("test3")
        vlayout.addWidget(self.dimensionalchangecook_radiobutton)
        self.select_button = qtw.QPushButton('select')
        vlayout.addWidget(self.select_button)

        self.groupbox.setLayout(vlayout)

        # mainlayout
        main_layout = qtw.QFormLayout()
        main_layout.addRow(activeuser_label)
        main_layout.addRow(heading_label)
        main_layout.setVerticalSpacing(40)
        main_layout.addRow(self.groupbox)

        self.setLayout(main_layout)

        # functionality
        self.select_button.clicked.connect(self.open_box)


        self.show()


    def open_box(self):
        msgb = qtw.QMessageBox()
        msgb.setWindowTitle("title")
        msgb.setText("hier sthet was")
        msgb.move(self.pos().x(), self.pos().y())
        run = msgb.exec_()

        # msgb = qtw.QMessageBox()
        # msgb.addButton()
        # if x open new windwo
        #



if __name__ == '__main__':
    app = qtw.QApplication(sys.argv)
    w = Startscreen()
    sys.exit(app.exec_())


小部件具有相對於其父級的位置,如果它沒有父級,則它將相對於屏幕。 在 msgb 的情況下,它屬於第二種情況,因此您必須將窗口中心的坐標轉換為全局坐標(即相對於屏幕)。 即使執行上述操作,它也不會居中,因為位置相對於左上角,即 msgb topleft 將位於屏幕的中心,這是不可取的,因此您還必須考慮 msgb 的大小. 並且顯示前后的 msgb 大小不同,因此使用 QTimer 就足夠了:

def open_box(self):
    msgb = qtw.QMessageBox()
    msgb.setWindowTitle("title")
    msgb.setText("hier sthet was")
    qtc.QTimer.singleShot( 0, lambda: msgb.move( self.mapToGlobal(self.rect().center() - msgb.rect().center()) ), )
    run = msgb.exec_()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM