Qt
文章平均质量分 63
心若天府
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Qt学习问题
1.QT程序,然后运行,程序启动后马上就退出 解决:将QtCored4.dll从C:\WINDOWS\system\中删除就可以了,错误原因是 LDR: LdrpWalkImportDescriptor() failed to probe C:\WINDOWS\system\QtCored4.dll for its manifest, ntstatus 0xc0150002, 2.Q原创 2011-11-03 14:25:11 · 977 阅读 · 0 评论 -
Qt控件的使用
所有代码都是在qt3.3.8+fedora8下运行的。 1. 控件位置的确定 控件的位置一般来说是相对其父的其左上角的坐标: QWidget *w = new QWidget(this); QPoint p = w->pos(); int x = p.x(); int y = p.y(); 若要得到其针对全局界面的坐标值,则需要转换一下,用mapToGlobal(): QPoint原创 2011-11-05 18:49:33 · 1075 阅读 · 0 评论
分享