12 lines
358 B
Python
12 lines
358 B
Python
# -*- coding: utf-8 -*-
|
|
# @Author : LG
|
|
|
|
from PyQt5 import QtWidgets, QtCore, QtGui
|
|
from sam_ann.ui.about_dialog import Ui_Dialog
|
|
|
|
class AboutDialog(QtWidgets.QDialog, Ui_Dialog):
|
|
def __init__(self, parent):
|
|
super(AboutDialog, self).__init__(parent)
|
|
self.setupUi(self)
|
|
self.setWindowModality(QtCore.Qt.WindowModality.WindowModal)
|