⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 button.cpp

📁 qt的基本实验!很简单!但是对你绝对有用!入门是最基本的!什么事情就怕没有入门!
💻 CPP
字号:
#include <qapplication.h>#include <qpushbutton.h>int main(int argc, char **argv){	QApplication button(argc, argv);	QPushButton hello("Hello, Button!", 0);	hello.resize(150, 30);	hello.setFont(QFont("Helvetica", 18, QFont::Bold));	button.setMainWidget(&hello);	hello.show();	int result = button.exec();	return result;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -