PyQt5 QSpinBox – 获得文本的翻译版本
在这篇文章中,我们将看到如何获得文本的翻译版本。文本的翻译版本是基于歧义字符串和包含复数的字符串的n值。如果没有合适的翻译字符串,翻译后的文本将是一个UTF-8字符串,即Unicode编解码器,可以代表Unicode字符串中的所有字符,如QString。然而,UTF-8有可能出现无效的序列,如果发现任何这样的序列,它们将被替换为一个或多个 “替换字符”,或者被抑制。
为了做到这一点,我们使用spin box对象的tr方法。
语法: spin_box.tr(text, d_text, n)
参数: 它需要3个参数,第一个是文本,另外两个不是必须的,第一个是消歧义字符串,另外一个是指复数的整数。
返回: 它返回字符串
以下是实现方法
# importing libraries
from PyQt5.QtWidgets import *
from PyQt5 import QtCore, QtGui
from PyQt5.QtGui import *
from PyQt5.QtCore import *
import sys
class Window(QMainWindow):
def __init__(self):
super().__init__()
# setting title
self.setWindowTitle("Python ")
# setting geometry
self.setGeometry(100, 100, 600, 400)
# calling method
self.UiComponents()
# showing all the widgets
self.show()
# method for widgets
def UiComponents(self):
# creating spin box
self.spin = QSpinBox(self)
# setting geometry to spin box
self.spin.setGeometry(100, 100, 250, 40)
# setting range to the spin box
self.spin.setRange(0, 999999)
# setting prefix to spin
self.spin.setPrefix("PREFIX ")
# setting suffix to spin
self.spin.setSuffix(" SUFFIX")
# setting status tip to the spin box
self.spin.setStatusTip("Small Value")
# creating a label
self.label = QLabel(self)
# making label multi line
self.label.setWordWrap(True)
# setting label geometry
self.label.setGeometry(100, 200, 250, 60)
# translating the text
value = self.spin.tr(self.spin.text())
# setting text to the label
self.label.setText("Translated text : " + str(value))
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出 :