QT快速添加画图组件
新建项目
- QT Widget 应用程序
- 不带ui的
定义类变量
#include <QGraphicsView>
#include <QGraphicsScene>
p
rivate:
QGraphicsScene * m_scene;
QGraphicsView * m_view;
初始化变量
在构造函数中,初始化画图组件的变量
m_view = new QGraphicsView();
m_scene = new QGraphicsScene();
m_view->setStyleSheet("border:none; background:#eee;");
m_view->setScene(m_scene);
m_view->centerOn(0, 0);
// m_view->scale(2, 2);
showMap();
添加图形控件
QPolygonF polygon(vecPoint);
QGraphicsPolygonItem *item = new QGraphicsPolygonItem(polygon);
m_scene->addItem(item);
其他笔记
文件读写
QString strFileName = "C:/111.txt";
QFile file(strFileName);
if (!file.open(QIODevice::ReadOnly)) {
// if (!file.open(QIODevice::WriteOnly)) {
qDebug() << "File open error";
return ;
}
QTextStream stream(&file);
stream.readLineInto(&line);
QStringList list = line.split(QRegExp("\\s+"));
list.removeAll("");
if (list.size() < 3) {
return ;
}
QPointF point = QPointF();
point.setX(list[0].toDouble());
point.setY(list[1].toDouble());
file.close();
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)