📄 button.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 + -