main.cpp
来自「qt-x11-free-3.0.3.tar.gz minigui图形界面工具」· C++ 代码 · 共 18 行
CPP
18 行
/*$Id$*/ #include <qapplication.h>#include "editor.h"int main( int argc, char ** argv){ QApplication app( argc, argv ); Editor editor; editor.setCaption( "Qt Example - Actiongroup" ); app.setMainWidget( &editor ); editor.show(); return app.exec();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?