Qt下LineEdit控件文件读写功能实现教程

版权申诉
0 下载量 173 浏览量 更新于2024-11-07 收藏 2.35MB RAR 举报
资源摘要信息:"Qt是一个跨平台的C++图形用户界面应用程序框架,广泛应用于开发具有本地外观和感觉的应用程序。在Qt框架中,QLineEdit是一个用于编辑单行文本的小部件。它提供了多种功能,例如选择、替换和插入文本。此外,QLineEdit可以配置为只读、支持密码输入以及支持验证输入的功能,使得它非常适合需要文本输入的用户界面。 标题中的'qt.rar_lineedit_visual c'指的可能是一个专注于Qt框架中QLineEdit类使用的教程或示例代码,而'lineedit visual_c'则直接指代QLineEdit和Visual C++的结合使用。 Visual C++是微软Visual Studio开发环境中的C++语言编译器,它与Qt结合使用时,开发者可以利用Visual Studio强大的调试和开发功能来构建和测试Qt应用程序。由于Visual Studio是Windows平台上流行的开发环境之一,它提供了良好的集成开发环境(IDE),使得Qt开发在Windows上变得更加方便。 描述中提到的'计算机'可能是文档描述的笔误,实际可能指的是'组件'。'实现了lineedit的文件读取,输入'这部分描述表明这个资源中会有关于如何使用QLineEdit小部件来实现文件读取和文本输入的详细信息。 综上所述,这个资源可能包含以下知识点: 1. Qt框架基础:了解Qt的基本结构和特点,包括它的信号与槽机制、事件处理等。 2. QLineEdit的使用:学习如何在Qt应用程序中创建和使用QLineEdit小部件来实现用户输入。 3. 文件操作:掌握如何在QLineEdit控件中实现文件的读取功能,例如通过QFileDialog选择文件后,获取文件路径并在QLineEdit中显示。 4. Visual C++集成:探索如何在Visual Studio中集成Qt进行应用程序的开发,包括环境配置和项目设置。 5. 输入验证:了解如何使用QLineEdit的验证功能来确保用户输入满足特定的格式要求,比如使用正则表达式进行输入验证。 由于提供的文件名是'Qt从入门到精通.pdf',我们可以推测这个资源是一个关于Qt的全面教程,其中包含了QLineEdit的使用和Visual C++集成相关的详细教程。这样的资源对于初学者来说是一个很好的学习材料,可以帮助他们从基础知识逐步深入,最终能够熟练地使用Qt框架和Visual Studio环境开发复杂的应用程序。"

import sys import threading import time from PyQt5.QtWidgets import * from PyQt5 import uic import pandas as pd import random # import pyqtgraph as pg import matplotlib.pyplot as plt from PyQt5.QtWidgets import QGroupBox from PyQt5 import QtWidgets from login_4 import Ui_CK from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas # df = pd.read_excel('shu.xlsx') class MyWindow(QWidget and QMainWindow,Ui_CK): def __init__(self): super().__init__() self.init_ui() groupbox = QGroupBox('Title',self) # self.plot = pg.PlotWidget(enableAutoRange=True) # self.ui.verticalLayout.addWidget(self.plot) # self.curve = self.plot.plot() #self.ui = uic.loadUi("./login_4.ui") def init_ui(self): print('1.1') try: self.ui = uic.loadUi("./login_4.ui") #print(threading.current_thread()) #print(self.ui.__dict__) # print(self.ui.label) # print(self.ui.label.text()) # 查看ui文件中有哪些控件 # 提取要操作的控件 self.user_name_qwidget = self.ui.lineEdit # 单位输入框 self.password_qwidget = self.ui.lineEdit_2 # 二级单位输入框 self.zhicheng_qwidget = self.ui.lineEdit_3 # 职称输入框 self.jiaoyuan_qwidget = self.ui.lineEdit_4 # 教员输入框 self.login_btn = self.ui.pushButton # 登录抽课按钮 self.textBrowser = self.ui.textBrowser # 授课对象显示区域 # 绑定信号与槽函数 self.textBrowser_2 = self.ui.textBrowser_2 # 文本显示区域课程名称 self.textBrowser_3 = self.ui.textBrowser_3 # 文本显示区域课次 self.textBrowser_4 = self.ui.textBrowser_4 # 文本显示区域教研室 self.login_btn.clicked.connect(self.login) self.login_btna = self.ui.pushButton_2 self.login_btna.clicked.connect(lambda: self.plot_q()) except Exception as e: print(e.__class__.__name__, e) def login(self): print('1.2') """登录按钮的槽函数""" #print(self.user_name_qwidget.text()) a = self.user_name_qwidget.text() e = sel 为什么会报错

2023-03-24 上传

使用QTimer对象代替QBasicTimer对象,修改程序class MyWindow(QWidget): def init(self): super().init() self.thread_list = [] self.color_photo_dir = os.path.join(os.getcwd(), "color_photos") self.depth_photo_dir = os.path.join(os.getcwd(), "depth_photos") self.image_thread = None self.saved_color_photos = 0 # 定义 saved_color_photos 属性 self.saved_depth_photos = 0 # 定义 saved_depth_photos 属性 self.init_ui() def init_ui(self): self.ui = uic.loadUi("C:/Users/wyt/Desktop/D405界面/intelrealsense1.ui") self.open_btn = self.ui.pushButton self.color_image_chose_btn = self.ui.pushButton_3 self.depth_image_chose_btn = self.ui.pushButton_4 self.open_btn.clicked.connect(self.open) self.color_image_chose_btn.clicked.connect(lambda: self.chose_dir(self.ui.lineEdit, "color")) self.depth_image_chose_btn.clicked.connect(lambda: self.chose_dir(self.ui.lineEdit_2, "depth")) def open(self): self.profile = self.pipeline.start(self.config) self.is_camera_opened = True self.label.setText('相机已打开') self.label.setStyleSheet('color:green') self.open_btn.setEnabled(False) self.close_btn.setEnabled(True) self.image_thread = ImageThread(self.pipeline, self.color_label, self.depth_label, self.interval, self.color_photo_dir, self.depth_photo_dir, self._dgl) self.image_thread.saved_color_photos_signal.connect(self.update_saved_color_photos_label) self.image_thread.saved_depth_photos_signal.connect(self.update_saved_depth_photos_label) self.image_thread.start() def chose_dir(self, line_edit, button_type): my_thread = MyThread(line_edit, button_type) my_thread.finished_signal.connect(self.update_line_edit) self.thread_list.append(my_thread) my_thread.start()

2023-05-26 上传

程序运行提示QBasicTimer::stop: Failed. Possibly trying to stop from a different thread,修改程序class MyWindow(QWidget): def init(self): super().init() self.thread_list = [] self.color_photo_dir = os.path.join(os.getcwd(), "color_photos") self.depth_photo_dir = os.path.join(os.getcwd(), "depth_photos") self.image_thread = None self.saved_color_photos = 0 # 定义 saved_color_photos 属性 self.saved_depth_photos = 0 # 定义 saved_depth_photos 属性 self.init_ui() def init_ui(self): self.ui = uic.loadUi("C:/Users/wyt/Desktop/D405界面/intelrealsense1.ui") self.open_btn = self.ui.pushButton self.color_image_chose_btn = self.ui.pushButton_3 self.depth_image_chose_btn = self.ui.pushButton_4 self.open_btn.clicked.connect(self.open) self.color_image_chose_btn.clicked.connect(lambda: self.chose_dir(self.ui.lineEdit, "color")) self.depth_image_chose_btn.clicked.connect(lambda: self.chose_dir(self.ui.lineEdit_2, "depth")) def open(self): self.profile = self.pipeline.start(self.config) self.is_camera_opened = True self.label.setText('相机已打开') self.label.setStyleSheet('color:green') self.open_btn.setEnabled(False) self.close_btn.setEnabled(True) self.image_thread = ImageThread(self.pipeline, self.color_label, self.depth_label, self.interval, self.color_photo_dir, self.depth_photo_dir, self._dgl) self.image_thread.saved_color_photos_signal.connect(self.update_saved_color_photos_label) self.image_thread.saved_depth_photos_signal.connect(self.update_saved_depth_photos_label) self.image_thread.start() def chose_dir(self, line_edit, button_type): my_thread = MyThread(line_edit, button_type) my_thread.finished_signal.connect(self.update_line_edit) self.thread_list.append(my_thread) my_thread.start()

2023-05-26 上传