久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<i id='6zlog'><tr id='6zlog'><dt id='6zlog'><q id='6zlog'><span id='6zlog'><b id='6zlog'><form id='6zlog'><ins id='6zlog'></ins><ul id='6zlog'></ul><sub id='6zlog'></sub></form><legend id='6zlog'></legend><bdo id='6zlog'><pre id='6zlog'><center id='6zlog'></center></pre></bdo></b><th id='6zlog'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='6zlog'><tfoot id='6zlog'></tfoot><dl id='6zlog'><fieldset id='6zlog'></fieldset></dl></div>
      <tfoot id='6zlog'></tfoot>
      • <bdo id='6zlog'></bdo><ul id='6zlog'></ul>

      <small id='6zlog'></small><noframes id='6zlog'>

        <legend id='6zlog'><style id='6zlog'><dir id='6zlog'><q id='6zlog'></q></dir></style></legend>

        在字符串中按下 QpushButton 時如何在 QlineEdit 中獲

        How to get text in QlineEdit when QpushButton is pressed in a string?(在字符串中按下 QpushButton 時如何在 QlineEdit 中獲取文本?)
          <bdo id='k8HZ7'></bdo><ul id='k8HZ7'></ul>
          <legend id='k8HZ7'><style id='k8HZ7'><dir id='k8HZ7'><q id='k8HZ7'></q></dir></style></legend>
        • <tfoot id='k8HZ7'></tfoot>

                  <small id='k8HZ7'></small><noframes id='k8HZ7'>

                  <i id='k8HZ7'><tr id='k8HZ7'><dt id='k8HZ7'><q id='k8HZ7'><span id='k8HZ7'><b id='k8HZ7'><form id='k8HZ7'><ins id='k8HZ7'></ins><ul id='k8HZ7'></ul><sub id='k8HZ7'></sub></form><legend id='k8HZ7'></legend><bdo id='k8HZ7'><pre id='k8HZ7'><center id='k8HZ7'></center></pre></bdo></b><th id='k8HZ7'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='k8HZ7'><tfoot id='k8HZ7'></tfoot><dl id='k8HZ7'><fieldset id='k8HZ7'></fieldset></dl></div>
                    <tbody id='k8HZ7'></tbody>
                • 本文介紹了在字符串中按下 QpushButton 時如何在 QlineEdit 中獲取文本?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我正在嘗試實現一個功能.我的代碼如下.

                  I am trying to implement a function. My code is given below.

                  當用戶單擊名稱為連接"的按鈕時,我想在字符串中獲取對象名稱為主機"的文本,例如主機".我怎樣才能做到這一點?我嘗試過,但失敗了.如何實現這個功能?

                  I want to get the text in lineedit with objectname 'host' in a string say 'shost' when the user clicks the pushbutton with name 'connect'. How can I do this? I tried and failed. How do I implement this function?

                  import sys
                  from PyQt4.QtCore import *
                  from PyQt4.QtGui import *
                  
                  
                  class Form(QDialog):
                      def __init__(self, parent=None):
                          super(Form, self).__init__(parent)
                  
                          le = QLineEdit()
                          le.setObjectName("host")
                          le.setText("Host")
                          pb = QPushButton()
                          pb.setObjectName("connect")
                          pb.setText("Connect") 
                          layout.addWidget(le)
                          layout.addWidget(pb)
                          self.setLayout(layout)
                  
                          self.connect(pb, SIGNAL("clicked()"),self.button_click)
                  
                          self.setWindowTitle("Learning")
                  
                      def button_click(self):
                      #i want the text in lineedit with objectname 
                      #'host' in a string say 'shost'. when the user click 
                      # the pushbutton with name connect.How do i do it?
                      # I tried and failed. How to implement this function?
                  
                  
                  
                  
                  app = QApplication(sys.argv)
                  form = Form()
                  form.show()
                  app.exec_()
                  

                  現在如何實現button_click"功能?我剛剛開始使用 pyQt!

                  Now how do I implement the function "button_click" ? I have just started with pyQt!

                  推薦答案

                  我的第一個建議是使用 Qt Designer 來創建你的 GUI.自己打字很糟糕,需要更多時間,而且你肯定會比 Qt Designer 犯更多的錯誤.

                  My first suggestion is to use Qt Designer to create your GUIs. Typing them out yourself sucks, takes more time, and you will definitely make more mistakes than Qt Designer.

                  這里有一些 PyQt 教程 幫助您走上正軌.列表中的第一個是您應該開始的地方.

                  Here are some PyQt tutorials to help get you on the right track. The first one in the list is where you should start.

                  了解哪些方法可用于特定類的一個很好的指南是 PyQt4 類參考.在這種情況下,您將查找 QLineEdit 并看到有一個 text 方法.

                  A good guide for figuring out what methods are available for specific classes is the PyQt4 Class Reference. In this case, you would look up QLineEdit and see the there is a text method.

                  回答您的具體問題:

                  要使您的 GUI 元素可用于對象的其余部分,請在它們前面加上 self.

                  To make your GUI elements available to the rest of the object, preface them with self.

                  import sys
                  from PyQt4.QtCore import SIGNAL
                  from PyQt4.QtGui import QDialog, QApplication, QPushButton, QLineEdit, QFormLayout
                  
                  class Form(QDialog):
                      def __init__(self, parent=None):
                          super(Form, self).__init__(parent)
                  
                          self.le = QLineEdit()
                          self.le.setObjectName("host")
                          self.le.setText("Host")
                          
                          self.pb = QPushButton()
                          self.pb.setObjectName("connect")
                          self.pb.setText("Connect") 
                          
                          layout = QFormLayout()
                          layout.addWidget(self.le)
                          layout.addWidget(self.pb)
                  
                          self.setLayout(layout)
                          self.connect(self.pb, SIGNAL("clicked()"),self.button_click)
                          self.setWindowTitle("Learning")
                  
                      def button_click(self):
                          # shost is a QString object
                          shost = self.le.text()
                          print shost
                          
                  
                  app = QApplication(sys.argv)
                  form = Form()
                  form.show()
                  app.exec_()
                  

                  這篇關于在字符串中按下 QpushButton 時如何在 QlineEdit 中獲取文本?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  How to bind a function to an Action from Qt menubar?(如何將函數綁定到 Qt 菜單欄中的操作?)
                  PyQt progress jumps to 100% after it starts(PyQt 啟動后進度躍升至 100%)
                  How to set yaxis tick label in a fixed position so that when i scroll left or right the yaxis tick label should be visible?(如何將 yaxis 刻度標簽設置在固定位置,以便當我向左或向右滾動時,yaxis 刻度標簽應該可見
                  `QImage` constructor has unknown keyword `data`(`QImage` 構造函數有未知關鍵字 `data`)
                  Change x-axis ticks to custom strings(將 x 軸刻度更改為自定義字符串)
                  How to show progress bar while saving file to excel in python?(如何在python中將文件保存為excel時顯示進度條?)

                  <legend id='Qr1Zt'><style id='Qr1Zt'><dir id='Qr1Zt'><q id='Qr1Zt'></q></dir></style></legend>
                • <small id='Qr1Zt'></small><noframes id='Qr1Zt'>

                  <tfoot id='Qr1Zt'></tfoot>
                    • <bdo id='Qr1Zt'></bdo><ul id='Qr1Zt'></ul>
                        <tbody id='Qr1Zt'></tbody>

                          • <i id='Qr1Zt'><tr id='Qr1Zt'><dt id='Qr1Zt'><q id='Qr1Zt'><span id='Qr1Zt'><b id='Qr1Zt'><form id='Qr1Zt'><ins id='Qr1Zt'></ins><ul id='Qr1Zt'></ul><sub id='Qr1Zt'></sub></form><legend id='Qr1Zt'></legend><bdo id='Qr1Zt'><pre id='Qr1Zt'><center id='Qr1Zt'></center></pre></bdo></b><th id='Qr1Zt'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='Qr1Zt'><tfoot id='Qr1Zt'></tfoot><dl id='Qr1Zt'><fieldset id='Qr1Zt'></fieldset></dl></div>
                            主站蜘蛛池模板: 日韩精品在线播放 | 99热精品在线 | 免费在线观看一区二区 | 国产传媒毛片精品视频第一次 | 亚洲视频一区二区三区 | 一区二区高清 | 福利片在线观看 | 精品欧美一区二区三区久久久 | 午夜男人天堂 | 古装人性做爰av网站 | 在线观看成人 | 免费特黄视频 | 日韩免费福利视频 | 色爱综合网| 成人深夜福利 | 日本三级电影在线免费观看 | 国产在线精品区 | 日日夜夜av| 国产美女在线观看 | 国产 欧美 日韩 一区 | 9久9久9久女女女九九九一九 | 国产人成精品一区二区三 | 久久久精品综合 | 欧美日韩一区二区在线观看 | av毛片在线播放 | 国产欧美在线一区 | 不用播放器看的av | 深夜爽视频 | 成人精品福利 | 免费精品在线视频 | 精品一区二区在线观看 | 欧美激情在线精品一区二区三区 | 国产精品99久久久久久久久 | 国产农村妇女毛片精品久久麻豆 | 欧美a级成人淫片免费看 | 91在线精品一区二区 | 国产视频二区 | 欧美黄色一级毛片 | 99久久中文字幕三级久久日本 | 在线视频日韩精品 | 国产一区二区免费电影 |