首页
留言板
关于
三味的小站
世界上没有偶然,有的只是必然的结果。
累计撰写
63
篇文章
累计创建
14
个标签
累计收到
0
条评论
栏目
目 录
CONTENT
最新文章
2018-04-18
Qt读取Excel之QAxObject
QAxObject * excel = NULL; QAxObject * workbooks = NULL; QAxObject * workbook = NULL; excel = new QAxObject(this); excel -> setControl("Excel.Applicati
2018-04-18
18
0
0
Qt
2018-04-18
Qt获取某目录下所有某类型的文件
void ScriptConfig::updateComboBox() { QDir fromDir = "./Data"; QStringList filters; filters.append("*.xls"); filters.append("*.xlsx");
2018-04-18
14
0
0
Qt
2018-04-18
Qt中求两线段交点
QPointF MapEditor::getIntersectPos(QPointF posA, QPointF posB, QPointF posC, QPointF posD)//返回AB与CD交点,无交点返回(0,0) { QLineF line1(posA, posB); Q
2018-04-18
50
0
0
Qt
2018-04-18
QLineEdit自定义
1.QAction void addAction(QAction * action, ActionPosition position) QLineEdit::LeadingPosition//前面 QLineEdit::TrailingPosition//后面 2.自定义 QMargins mar
2018-04-18
15
0
0
Qt
2018-04-18
使用QMediaPlayer没声音
使用QMediaPlayer的程序在别的电脑运行没声音,解决: exe目录添加:mediaservice/dsengine.dll
2018-04-18
18
0
0
Qt
2018-04-18
函数末尾加const的作用
#include <iostream> using namespace std; class Test { int num; public: Test() { num=10; } void print1() { cout
2018-04-18
12
0
0
C++
2018-04-18
C++操作符重载
C++中的运算符除了少数几个之外,全部可以重载,而且只能重载C++中已有的运算符。 重载之后运算符的优先级和结合性都不会改变。 运算符重载是针对新类型数据的实际需要,对原有运算符进行适当的改造。一般来说,重载的功能应当与原有功能相类似,不能改变原运算符的操作对象个数,同时至少要有一个操作对象是自定义
2018-04-18
16
0
0
C++
2018-04-18
QGraphicsItem使用
//重写虚函数 QRectF boundingRect() const;//预计绘制的区域 void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget /* = 0 */);//绘制 QR
2018-04-18
17
0
0
Qt
2018-04-18
QDomDocument读取XML
MyXmlReader::MyXmlReader(QWidget *parent) : QDialog(parent) { ui.setupUi(this); connect(ui.openBtn, SIGNAL(clicked()), this, SLOT(openFile
2018-04-18
15
0
0
Qt
2018-04-18
删除设备和驱动中的图标
WIN+R输入regedit,打开注册表 在以下目录中删除 HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace
2018-04-18
23
0
0
电脑问题
1
2
3
4
5
6
7