zoukankan      html  css  js  c++  java
  • QtGui.QLineEdit

    QtGui.QLineEdit is a widget that allows to enter and edit a single line of plain text. There are undo and redo, cut and paste, and drag & drop functions available for the widget.

    #!/usr/bin/python
    # -*- coding: utf-8 -*-
    
    """
    ZetCode PyQt4 tutorial 
    
    This example shows text which 
    is entered in a QtGui.QLineEdit
    in a QtGui.QLabel widget.
     
    author: Jan Bodnar
    website: zetcode.com 
    last edited: August 2011
    """
    
    import sys
    from PyQt4 import QtGui, QtCore
    
    class Example(QtGui.QWidget):
        
        def __init__(self):
            super(Example, self).__init__()
            
            self.initUI()
            
        def initUI(self):      
    
            self.lbl = QtGui.QLabel(self)
            qle = QtGui.QLineEdit(self)
            
            qle.move(60, 100)
            self.lbl.move(60, 40)
    
            qle.textChanged[str].connect(self.onChanged)
            
            self.setGeometry(300, 300, 280, 170)
            self.setWindowTitle('QtGui.QLineEdit')
            self.show()
            
        def onChanged(self, text):
            
            self.lbl.setText(text)
            self.lbl.adjustSize()        
            
            
    def main():
        
        app = QtGui.QApplication(sys.argv)
        ex = Example()
        sys.exit(app.exec_())
    
    
    if __name__ == '__main__':
        main()
    

    This example shows a line edit widget and a label. The text that we key in the line edit is displayed immediately in the label widget.

    qle = QtGui.QLineEdit(self)
    

    The QtGui.QLineEdit widget is created.

    qle.textChanged[str].connect(self.onChanged)
    

    If the text in the line edit widget changes, we call the onChanged() method.

    def onChanged(self, text):
        
        self.lbl.setText(text)
        self.lbl.adjustSize() 
    

    Inside the onChanged() method, we set the typed text to the label widget. We call the adjustSize()method to adjust the size of the label to the length of the text.

    QtGui.QLineEditFigure: QtGui.QLineEdit

  • 相关阅读:
    Springboot配置文件解析器
    ThreadLocal的简单使用和实现原理
    hashCode()方法对HashMap的性能影响
    Thread中的join()方法
    Windows使用MongoDB,以及索引创建
    Android--我的Butterknife黄油刀怎么找不到控件了!!!
    Android--RecyclerView的封装使用
    Android--自定义加载框
    Android--Retrofit+RxJava的简单封装(三)
    Android--Retrofit+RxJava(二)
  • 原文地址:https://www.cnblogs.com/hushaojun/p/4435870.html
Copyright © 2011-2022 走看看