码迷,mamicode.com
首页 > 其他好文 > 详细

pyqt labe界面超级链接例子学习

时间:2014-10-04 16:54:46      阅读:177      评论:0      收藏:0      [点我收藏+]

标签: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))

 

pyqt labe界面超级链接例子学习

标签:style   http   io   os   sp   c   on   cti   r   

原文地址:http://www.cnblogs.com/mhxy13867806343/p/4006044.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!