如何在 QGroundControl 的标题中放置空格?
How can I put white spaces in Title of QGroundControl?
有没有办法在 QGroundControl 中放置空格?我是新手,不太了解 QML 或 qmake。
我想将标题从“QGroundControl”更改为“Q Ground Control”。
我尝试在下面一行的 “qgroundcontrol.pro” 中进行更改,但这并没有像我预期的那样工作。
发件人: DEFINES += QGC_APPLICATION_NAME=\"\\"QGroundControl\\"\"
收件人: DEFINES += QGC_APPLICATION_NAME=\"\\"Q Ground Control\\"\"
结果是: Q -DGround -DControl
所需结果: Q 地面控制
好的,我想我有一个解决方案:
QGC = '\"Q Ground Control\"'
DEFINES += QGC_APPLICATION_NAME=\"$${QGC}\"
试一试,告诉我们进展如何。
使用正确的转义序列解决了我的问题:
DEFINES += QGC_APPLICATION_NAME='"\\"Custom QGroundControl\\""'
有没有办法在 QGroundControl 中放置空格?我是新手,不太了解 QML 或 qmake。
我想将标题从“QGroundControl”更改为“Q Ground Control”。 我尝试在下面一行的 “qgroundcontrol.pro” 中进行更改,但这并没有像我预期的那样工作。
发件人: DEFINES += QGC_APPLICATION_NAME=\"\\"QGroundControl\\"\"
收件人: DEFINES += QGC_APPLICATION_NAME=\"\\"Q Ground Control\\"\"
结果是: Q -DGround -DControl
所需结果: Q 地面控制
好的,我想我有一个解决方案:
QGC = '\"Q Ground Control\"'
DEFINES += QGC_APPLICATION_NAME=\"$${QGC}\"
试一试,告诉我们进展如何。
使用正确的转义序列解决了我的问题:
DEFINES += QGC_APPLICATION_NAME='"\\"Custom QGroundControl\\""'