久久久久久久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>
                            主站蜘蛛池模板: 亚洲综合无码一区二区 | 成人精品国产免费网站 | 91在线电影 | 中文字幕1区2区3区 亚洲国产成人精品女人久久久 | 一区二区三区在线播放 | 精品国产一区久久 | 91精品久久久久久久久中文字幕 | 欧美精品久久久久 | 国产成人免费视频网站高清观看视频 | 国产99视频精品免费视频7 | 99久久精品免费看国产四区 | 国产美女永久免费无遮挡 | 精品国产一区三区 | 欧美一区二区三区视频 | 午夜丰满少妇一级毛片 | 亚洲欧美激情四射 | 中文字幕免费视频 | 91影视| 久久亚洲国产 | 国产精品福利在线 | 中国黄色在线视频 | 一级中国毛片 | 黄a在线观看 | 免费一级片 | 日韩有码一区 | 亚洲国产成人精品女人久久久 | 免费久久网站 | 国产美女久久久 | 天天影视色综合 | 欧美精品久久久久 | 亚洲一区 中文字幕 | 久久久久成人精品免费播放动漫 | 亚洲精品成人 | 亚洲天堂久久 | 欧美久久久久 | 国产精品毛片 | 玖玖色在线视频 | 久草视频在线播放 | 一区二区影院 | 欧美日韩高清一区 | 久久久一区二区三区 |