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

Java知识分享网

Java1234官方群25:java1234官方群17
Java1234官方群25:838462530
        
SpringBoot+SpringSecurity+Vue+ElementPlus权限系统实战课程 震撼发布        

最新Java全栈就业实战课程(免费)

springcloud分布式电商秒杀实战课程

IDEA永久激活

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

锋哥开始收Java学员啦!

Python学习路线图

锋哥开始收Java学员啦!
当前位置: 主页 > 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)

 

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

锋哥公众号


锋哥微信


关注公众号
【Java资料站】
回复 666
获取 
66套java
从菜鸡到大神
项目实战课程

锋哥推荐