代码拉取完成,页面将自动刷新
import sys
import os
from PySide6.QtWidgets import *
from PySide6.QtGui import *
from PySide6.QtCore import *
class Demo(QWidget):
def __init__(self, parent=None):
super().__init__(parent)
self.parent = parent
layout = QVBoxLayout()
layout.setAlignment(Qt.AlignmentFlag.AlignTop)
toolBar=QToolBar()
toolBar.addWidget(QLabel('Shadow:'))
cbShadow=QComboBox()
cbShadow.addItems(QFrame.Shadow.__members__.keys())
cbShadow.currentTextChanged.connect(self.OnShadowChanged)
toolBar.addWidget(cbShadow)
toolBar.addWidget(QLabel('Shape:'))
cbShape=QComboBox()
cbShape.addItems(QFrame.Shape.__members__.keys())
cbShape.currentTextChanged.connect(self.OnShapeChanged)
toolBar.addWidget(cbShape)
layout.addWidget(toolBar)
self.qframe=QFrame()
self.qframe.setMinimumWidth(500)
self.qframe.setMinimumHeight(100)
layout.addWidget(self.qframe)
self.setLayout(layout)
def OnShadowChanged(self,text):
shadow=QFrame.Shadow[text]
self.qframe.setFrameShadow(shadow)
self.parent.OnShowMessage(f'Set FrameShadow:{shadow}')
def OnShapeChanged(self,text):
shape=QFrame.Shape[text]
self.qframe.setFrameShape(shape)
self.parent.OnShowMessage(f'Set FrameShape:{shape}')
def runDemo(parent):
wigdet = Demo(parent)
return wigdet
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。