转载自:点击打开链接http://blog.csdn.net/luo_isaiah/article/details/5794973 相信用过Qt Designer的朋友,对Qt Project中的.ui文件并不陌生。这个文件在Qt Designer中并不能直接修改其源代码,而只能通过Qt Desig Read More
posted @ 2016-01-06 00:50 findumars Views(17329) Comments(0) Diggs(5)
最近一直在学习Qt,用Qt写了一个程序,但是不知道怎么发布,网上说的都是在windows下怎么发布Qt应用程序,但是,在windows下Qt应用程序依赖的库文件与linux下的名字不同。于是,我就想到Linux下有没有这么一个命令,能够找到一个可执行文件运行时所依赖的库文件,百度一下,还真... Read More
posted @ 2016-01-06 00:49 findumars Views(7347) Comments(1) Diggs(1)
这两天跟着班级辅导,总有学生感到很疑惑,用ui designer设计出来的ui文件是如何使用的,下面我从一个例子来说明下,希望能对有这样疑惑的同学有帮助。 事实上,现在有了继承设计工具qtcreator,作为开发者再也不用考虑这个问题,因为当你用qtcreator创建一个工程的时候,qtcreato Read More
posted @ 2016-01-06 00:46 findumars Views(2826) Comments(0) Diggs(0)
原作者:OlivierGoffart点击打开链接http://woboq.com/blog/qstringliteral.html 译者:zzjin点击打开链接http://www.tuicool.com/articles/6nUrIrQStringLieral是Qt5中新引入的一个用... Read More
posted @ 2016-01-06 00:36 findumars Views(763) Comments(0) Diggs(0)
原先QString("mystrr"),现在都不认了,必须都要加上L才行原先:m_conn->put_HttpProxyAuthMethod("Basic");现在:m_conn->put_HttpProxyAuthMethod(L"Basic");同理: handle = m_conn->op... Read More
posted @ 2016-01-05 19:17 findumars Views(526) Comments(0) Diggs(0)