QT
sudo life
这个作者很懒,什么都没留下…
展开
-
QT XML 读写
QT XML 读写首先工程的.pro文件中需要添加 QT += xml官方解释QDomNode如下The QDomNode class is the base class for all the nodes in a DOM tree.Many functions in the DOM return a QDomNode.You can find out the type of a no...原创 2019-03-07 09:41:25 · 256 阅读 · 0 评论 -
QT操作Excel
本文所写的方法仅适用于windows平台,因为该方法需要ActiveX支持. linux下可使用libexcel,这里不作介绍.QAxObject excel("Excel.Application");//连接Excel控件 excel.setProperty("Visible", false);// 不显示窗体 excel.setProperty("DisplayAlerts"原创 2019-03-07 09:53:50 · 369 阅读 · 0 评论 -
QT 显示GIF动画
1 使用QLabel 显示QMovie *movie = new QMovie(":/images/timg.gif");//这个资源不用写到source.qrc中,只要路径对了就行,还有就是movie最好是new的QLabel *label = new QLabel(this);label->setGeometry(1024, 333, 400, 300);label->se...原创 2019-03-27 17:19:58 · 1368 阅读 · 0 评论