:使用窗口部件》

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了:使用窗口部件》相关的知识,希望对你有一定的参考价值。

本次内容均转自 http://www.cppblog.com/lai3d/archive/2007/07/21/28477.html

 

/****************************************************************
**
** Qt教程一 - 4
**
****************************************************************/

#include <qapplication.h>
#include <qpushbutton.h>
#include <qfont.h>


class MyWidget : public QWidget
{
public:
    MyWidget( QWidget *parent=0, Qt::WindowFlags f = 0 );
};


MyWidget::MyWidget( QWidget *parent, Qt::WindowFlags f )
        : QWidget( parent, f )
{
    setMinimumSize( 200, 120 );
    setMaximumSize( 200, 120 );

    QPushButton *quit = new QPushButton( "Quit", this );
    quit->setGeometry( 62, 40, 75, 30 );
    quit->setFont( QFont( "Times", 18, QFont::Bold ) );

    connect( quit, SIGNAL(clicked()), qApp, SLOT(quit()) );
}


int main( int argc, char **argv )
{
    QApplication a( argc, argv );

    MyWidget w;
    w.setGeometry( 100, 100, 200, 120 );
    w.show();
    return a.exec();
}

以上是关于:使用窗口部件》的主要内容,如果未能解决你的问题,请参考以下文章

使用tkinter.pack()始终使小部件居中

状态栏 铆接部件中心部件

如何使用 grid() 将小部件水平居中?

使用自动布局正确对齐通知中心小部件中的元素

QT_4-QMainWindow

Zookeeper应用场景概述