开源库or软件
程序员文章站
2022-06-22 16:07:10
...
开源库or软件
qt打包工具
开机自启动
主要的代码:
TestWidget w;
if(QApplication::arguments().contains(QStringLiteral("--autostart")))
w.setAutoStarted();
w.show();
TestWidget::TestWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::TestWidget),
_autostart{new QAutoStart{this}}
{
ui->setupUi(this);
_autostart->setArguments({QStringLiteral("--autostart")});
ui->checkBox->setChecked(_autostart->isAutoStartEnabled());
connect(_autostart, &QAutoStart::autoStartEnabledChanged, ui->checkBox, &QCheckBox::setChecked);
connect(ui->checkBox, &QCheckBox::clicked, _autostart, &QAutoStart::setAutoStartEnabled);
}
Qt5+安装包制作(Qt Installer Framework)
上一篇: spring-boot集成redis
下一篇: 开源协议