其他分享
首页 > 其他分享> > Qt6 QML Book/Qt Creator IDE/项目管理

Qt6 QML Book/Qt Creator IDE/项目管理

作者:互联网

Managing Projects

项目管理

Qt Creator manages your source code in projects. You can create a new project by using File ‣ New File or Project. When you create a project you have many choices of application templates. Qt Creator is capable of creating desktop, embedded, mobile applications and even python projects using Qt for Python. There are templates for applications which uses Widgets or Qt Quick or even bare-bone projects just using a console. For a beginner, it is difficult to choose, so we pick three project types for you.

Qt Creator管理项目中的源码。可以通过文件(File)>“新建文件或项目(New File or Project)”创建新项目。创建项目时,可以使用多种应用程序模板。Qt Creator可以创建桌面、嵌入式、移动应用程序,甚至python项目(Qt for python)。有些应用程序模板使用widget或Qt Quick,甚至是控制台项目。对初学者来说,选择有点困难,所以我们挑选了几种项目类型介绍下。

TIP

During the first parts of the book, we will mainly use the QtQuick UI Prototype type or the Qt Quick Application, depending on whether we also use some C++ code with Qt Quick. Later to describe some c++ aspects we will use the Qt Console Application type. For extending Qt Quick with our own native plug-ins we will use the Qt Quick 2.0 Extension Plug-in wizard type.

在本书的第一部分,我们将使用QtQuick UI原型类型或QtQuick应用程序,根据是否使用c++代码。然后使用Qt控制台应用程序类型,介绍一些c++方面知识。为了使用本地扩展插件,我们将使用Qt Quick 2.0扩展插件向导类型。

标签:Qt6,Qt,Creator,c++,Widgets,应用程序,Quick,QML
来源: https://blog.csdn.net/aggs1990/article/details/121777059