我想在我的图像中制作图像,QMainWindow
因此当您单击它时,您会像qpushbutton
我使用这样的信号进行转换:
self.quit=QtGui.QPushButton(self)
self.quit.setIcon(QtGui.QIcon('images/9.bmp'))
但问题是当我调整窗口qpushbutton
大小时也调整大小但不是他的图标,
Qt 不会为你拉伸你的图像——最好这样。我建议通过在布局中添加担架来保持按钮大小不变。可调整大小的按钮在视觉上不是很吸引人,而且无论如何在 GUI 中并不常见。
要制作可点击的图像,这是我能想到的最简单的代码:
import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
class ImageLabel(QLabel):
def __init__(self, image, parent=None):
super(ImageLabel, self).__init__(parent)
self.setPixmap(image)
def mousePressEvent(self, event):
print 'I was pressed'
class AppForm(QMainWindow):
def __init__(self, parent=None):
QMainWindow.__init__(self, parent)
self.create_main_frame()
def create_main_frame(self):
name_label = QLabel("Here's a clickable image:")
img_label = ImageLabel(QPixmap('image.png'))
vbox = QVBoxLayout()
vbox.addWidget(name_label)
vbox.addWidget(img_label)
main_frame = QWidget()
main_frame.setLayout(vbox)
self.setCentralWidget(main_frame)
if __name__ == "__main__":
app = QApplication(sys.argv)
form = AppForm()
form.show()
app.exec_()
只需替换image.png
为您的图像文件名(QPixmap 可接受的格式)即可。