欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

开源库or软件

程序员文章站 2022-06-22 16:07:10
...

开源库or软件

qt打包工具

开源库or软件

开机自启动

开源库or软件
主要的代码:

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)

相关标签: QT