PyQt5-去掉边框和标题栏

**

PyQt5-去掉边框和标题栏

**

  1. 去掉文本框边框
self.lineEdit.setStyleSheet("border:none;")

lineEdit有边框:
PyQt5-去掉边框和标题栏_第1张图片
lineEdit无边框:
PyQt5-去掉边框和标题栏_第2张图片

  1. 去掉标题栏
#跳转窗口界面
class Ui_Dialog(QtWidgets.QWidget, Ui_Dialog):
	def __init__(self):
		super(Ui_Dialog, self).__init__()
		self.setupUi(self)
# 无边框        
self.setWindowFlags(Qt.FramelessWindowHint)
# 设置窗口背景颜色        
self.setStyleSheet("background-color:white;")

你可能感兴趣的:(UI)