c14_2f.h
来自「C++Builder编程实例详解,用具体的例子阐明C++的一些基本操作,所有程序」· C头文件 代码 · 共 39 行
H
39 行
//---------------------------------------------------------------------------
#ifndef C14_2fH
#define C14_2fH
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\ExtCtrls.hpp>
#include <vcl\Buttons.hpp>
#include <vcl\Menus.hpp>
#include <vcl\ISP.hpp>
#include <vcl\OleCtrls.hpp>
#include <vcl\ComCtrls.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE-managed Components
TMainMenu *MainMenu1;
TMenuItem *N1;
TMenuItem *Exit;
TUDP *UDP1;
TMemo *Memo1;
TMemo *Memo2;
TStatusBar *Bar;
void __fastcall FormCreate(TObject *Sender);
void __fastcall Memo1KeyDown(TObject *Sender, WORD &Key, TShiftState Shift);
void __fastcall UDP1DataArrival(TObject *Sender, int bytesTotal);
private: // User declarations
public: // User declarations
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TForm1 *Form1;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?