def fh2(name="vertik horizontal",title=''):
w=QtGui.QWidget()
#w.setWindowFlags(QtCore.Qt.WindowStaysOnTopHint)
### w.setStyleSheet("QWidget { font: bold 18px;color:blue;border-style: outset;border-width: 3px;border-radius: 10px;border-color: blue;}")
layout = QtGui.QVBoxLayout()
layout.setAlignment(QtCore.Qt.AlignLeft)
w.setLayout(layout)
#pB= QtGui.QLabel("name")
#pB.setStyleSheet("QWidget { font: bold 18px;color:red;border-style: outset;border-width: 3px;border-radius: 10px;border-color: blue;}")
#layout.addWidget(pB)
if title <>'': w.setWindowTitle(title)
#w.show()
#ComboViewShowWidget(w,False)
w.layout=layout
return w
评论列表
文章目录