标签:style http io os sp c on cti r
def bz(self):
self.lable1=QtGui.QLabel(u‘<br><a href=http://windows.microsoft.com/zh-cn/windows7/getting-help#section_1>帮助说明</a></br>‘
u‘<br><a href=http://support.microsoft.com/contactus/?ln=zh-cn>联系专区</a></br>‘
u‘<br><a href=http://support.microsoft.com/?ln=zh-cn>另类高级说明</a></br>‘
u‘<br><a href=help\\>本地文档说明(是为未连接internet用户准备的)</a></br>‘)
self.lable1.setWindowTitle(u‘帮助与支持‘)
self.lable1.resize(100,100)
self.lable1.setAlignment(QtCore.Qt.AlignLeading)
self.connect(self.lable1, QtCore.SIGNAL("linkActivated(QString)"),self.link_activated)
self.ui.l_e1.setText((u‘win系列帮助说明‘))
self.lable1.show()
def link_activated(self, link):
webbrowser.open(str(link))
标签:style http io os sp c on cti r
原文地址:http://www.cnblogs.com/mhxy13867806343/p/4006044.html