about.cpp

来自「C++Builder程序员编程手记《配书光盘》」· C++ 代码 · 共 33 行

CPP
33
字号
//----------------------------------------------------------------------------
//Borland C++Builder
//Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop

#include "about.h"
#include <stdio.h>
//----------------------------------------------------------------------------
#pragma resource "*.dfm"
Taboutform *aboutform;
//----------------------------------------------------------------------------
__fastcall Taboutform::Taboutform(TComponent *Owner)
  : TForm(Owner)
{
}
//----------------------------------------------------------------------------


void __fastcall Taboutform::OKButtonClick(TObject *Sender)
{
    Close();   
}
//---------------------------------------------------------------------------
void __fastcall Taboutform::FormClose(TObject *Sender,
      TCloseAction &Action)
{
    Action=caFree;
}
//---------------------------------------------------------------------------

⌨️ 快捷键说明

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