pyqt设置lineedit只能输入数字
时间: 2024-04-02 22:36:44 浏览: 182
Edit 控件实现只让数字输入程序
要设置一个QLineEdit只能输入数字,可以使用正则表达式。你可以将QLineEdit的Validator设置为QRegExpValidator,并将正则表达式设置为只允许数字的模式。下面是一个示例代码:
```python
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QLineEdit
from PyQt5.QtGui import QRegExpValidator
from PyQt5.QtCore import QRegExp
class Example(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
self.setGeometry(300, 300, 300, 150)
self.setWindowTitle('LineEdit Example')
# create a QLineEdit widget
qle = QLineEdit(self)
# create a regular expression that only allows digits
regex = QRegExp("[0-9]+")
# create a validator that uses the regular expression
validator = QRegExpValidator(regex)
# set the validator for the QLineEdit
qle.setValidator(validator)
self.show()
if __name__ == '__main__':
app = QApplication(sys.argv)
ex = Example()
sys.exit(app.exec_())
```
在上面的代码中,我们创建了一个QLineEdit,然后创建了一个正则表达式,该正则表达式只允许数字。然后,我们创建了一个QRegExpValidator,该验证器使用正则表达式,并将其设置为QLineEdit的验证器。这样,用户只能在QLineEdit中输入数字。
阅读全文