ISAT_with_sam/widgets/right_button_menu.py
2023-04-20 00:00:19 +08:00

11 lines
232 B
Python

# -*- coding: utf-8 -*-
# @Author : LG
from PyQt5 import QtWidgets
class RightButtonMenu(QtWidgets.QMenu):
def __init__(self, mainwindow):
super(RightButtonMenu, self).__init__()
self.mainwindow = mainwindow