main.cpp

来自「gx 公司的2410-ep qt试验源代吗。 还有说明文档。」· C++ 代码 · 共 23 行

CPP
23
字号
/****************************************************************************
** $Id: /sample/4/main.cpp   2.3.2   edited 2004-10-12 $
**
** Copyright (C) 2004-2005 OURSELEC AS.  All rights reserved.
**
** This file is part of an example program for Qt.  This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/

#include <qapplication.h>
#include "mainwidget.h"

int main( int argc, char **argv )
{
		QApplication app( argc, argv );
		MainWidget *mainwidget = new MainWidget( 0 );
		mainwidget->setGeometry(10, 30, 280, 200 );
		app.setMainWidget( mainwidget );
		mainwidget->show();
		int result = app.exec();
		return result;
}

⌨️ 快捷键说明

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