在PyQt中,可以使用控件的方法來獲取其內容。以下是一些常見的控件及其相應的方法:
text()
方法返回文本框中的內容。line_edit = QLineEdit()
content = line_edit.text()
toPlainText()
方法返回文本框中的內容。text_edit = QTextEdit()
content = text_edit.toPlainText()
isChecked()
方法返回復選框的選中狀態,text()
方法返回復選框的文本。checkbox = QCheckBox("Check me")
checked = checkbox.isChecked()
text = checkbox.text()
isChecked()
方法返回單選按鈕的選中狀態,text()
方法返回單選按鈕的文本。radio_button = QRadioButton("Select me")
checked = radio_button.isChecked()
text = radio_button.text()
currentText()
方法返回當前選中項的文本,currentIndex()
方法返回當前選中項的索引。combo_box = QComboBox()
current_text = combo_box.currentText()
current_index = combo_box.currentIndex()
value()
方法返回框中的值。spin_box = QSpinBox()
value = spin_box.value()
double_spin_box = QDoubleSpinBox()
value = double_spin_box.value()
這些是一些常見控件的獲取內容的方法,具體取決于你使用的控件類型和其對應的方法。