Java知识分享网 - 轻松学习从此开始!    

Java知识分享网

        
AI编程,程序员挑战年入30~100万高级指南 - 职业规划
SpringBoot+SpringSecurity+Vue权限系统高级实战课程        

IDEA永久激活

Java微信小程序电商实战课程(SpringBoot+VUe)

     

AI人工智能学习大礼包

     

PyCharm永久激活

66套java实战课程无套路领取

     

Cursor+Claude AI编程 1天快速上手视频教程

     
当前位置: 主页 > Java文档 > Java基础相关 >

PySide GUI Application Development PDF 下载


时间:2023-11-25 09:18来源:http://www.java1234.com 作者:转载  侵权举报
PySide GUI Application Development
失效链接处理
PySide GUI Application Development PDF 下载







用户下载说明:
电子版仅供预览,下载后24小时内务必删除,支持正版,喜欢的请购买正版书籍:
https://product.dangdang.com/11269519080.html
 


相关截图:
 



主要内容:


Adding a button
The next customization is to add a button to our application. The most common
button used in any GUI is a push or command button. We push (click on) the button
to command the computer to perform some action or answer a decision. Typical
push buttons include OKApplyCancelCloseYesNo, and Help. Usually the
push button is rectangular with some label on it. It can also have an optional icon
associated with it. It is also possible to define a shortcut key combination to the
button to which it responds on clicking the key combination.
The button emits a signal when it is activated by any external event, say, mouse
click or by pressing the spacebar or by a keyboard shortcut. A widget may be
associated with this key click event which is executed on receiving this signal and it
is usually called a slot, in Qt. We will learn more about signals and slots in the later
chapters. As for now, be informed that a signal will connect to a slot on emit. There
can also be other signals that are provided on a button like button pressed, button
released, button checked, button down, button enabled, and so on. Apart from a
push button we also have other button types in Qt like QToolButtonQRadioButton,
QCommandLinkButton and QCheckBox will be discussed later.
QPushButton can be instantiated in three ways. It has three constructors with
different signatures. They are:
QPushButton(parent=None)
QPushButton(text, [parent=None])
QPushButton(icon, text, [parent=None])
The parent parameter can be any widget, text is any string or a set of unicode
characters, and icon is a valid QIcon object.
In this example program, we are going to add a button that will close the
application when clicked. We define a button first and will call a function (slot)
when clicked (signal).
def setButton(self):
""" Function to add a quit button
"""
myButton = QPushButton('Quit', self)
myButton.move(50, 100)
myButton.clicked.connect(myApp.quit)

 

 
 
------分隔线----------------------------


锋哥推荐