如何通过单击屏幕截图中显示的按钮来创建事件。 WPF
主页
/
user-466451
Navsikaya's questions
我实现了授权,但是当我单击按钮时"Войти"
,表单的主窗口没有打开。
在此之前,我试图假装有Main
一个窗口,它打开了Main
窗口,但随后按钮就停止工作了。
现在我尝试先调用 Widget 并打开 Main,但什么也没有......
我启动小部件(授权)窗口
主要.py
if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
Form = QtWidgets.QWidget()
ui = Ui_Form()
ui.setupUi(Form)
Form.show()
sys.exit(app.exec_())
类表单()
class Ui_Form(object):
def setupUi(self, Form):
Form.setObjectName("Form")
Form.resize(400, 300)
self.lineEdit = QtWidgets.QLineEdit(Form)
self.lineEdit.setGeometry(QtCore.QRect(130, 50, 113, 22))
self.lineEdit.setObjectName("lineEdit")
self.pushButton_2 = QtWidgets.QPushButton(Form)
self.pushButton_2.setGeometry(QtCore.QRect(140, 190, 93, 28))
self.pushButton_2.setObjectName("pushButton_2")
self.pushButton = QtWidgets.QPushButton(Form)
self.pushButton.setGeometry(QtCore.QRect(140, 150, 93, 28))
self.pushButton.setObjectName("pushButton")
self.lineEdit_2 = QtWidgets.QLineEdit(Form)
self.lineEdit_2.setGeometry(QtCore.QRect(130, 100, 113, 22))
self.lineEdit_2.setObjectName("lineEdit_2")
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
self.aut()
def aut(self):
self.pushButton.clicked.connect(self.Autor)
def retranslateUi(self, Form):
_translate = QtCore.QCoreApplication.translate
Form.setWindowTitle(_translate("Form", "Form"))
self.lineEdit.setPlaceholderText(_translate("Form", "Логин"))
self.pushButton_2.setText(_translate("Form", "Выход"))
self.pushButton.setText(_translate("Form", "Войти"))
self.lineEdit_2.setPlaceholderText(_translate("Form", "Пароль"))
def Autor(self):
app = QtWidgets.QApplication(sys.argv)
MainWindow = QtWidgets.QMainWindow()
ui = Ui_MainWindow()
ui.setupUi(MainWindow)
MainWindow.show()
#sys.exit(app.exec_())
我有文字:
“当然!下面是一些简单的 Python 代码示例,它将 \Hello, World!\ 打印到控制台:\n\n \ python\\nprint(\\Hello, World!\\)\\n
n\n此代码使用 print() 函数,这是一个基本的 Python 函数,它将文本输出到\n\n如果您想查看另一个示例或特定类型的\简单代码,\请告诉我您对什么感兴趣!”
但我需要 TextView 能够看到 \n 并精美地显示它。
if (responseCode == HttpURLConnection.HTTP_OK) {val inputStream = httpURLConnection?.inputStream
val response1 = inputStream?.bufferedReader().use { it?.readText() }
val response2 = "$response1"
val response3 = response2.replace("\"", "")
val response = HtmlCompat.fromHtml(response3,HtmlCompat.FROM_HTML_MODE_COMPACT)
在这里,一般来说,我从文本中删除引号,然后想要进行 HTML 格式化,但没有任何结果。
该代码乍一看不太好,但它只是用于测试。
我正在尝试打开并查看 Python 库中的内容。我发现它带有 .pyd 扩展名,但是当我打开它时,显然编码是不同的,我做得对吗)
提前感谢您的回复。