brparts.h

来自「C++」· C头文件 代码 · 共 46 行

H
46
字号
//---------------------------------------------------------------------------
// Borland C++Builder
// Copyright (c) 1987, 1998 Borland International Inc.  All Rights Reserved.
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
#ifndef brpartsH
#define brpartsH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <DBCtrls.hpp>
#include <Buttons.hpp>
#include <DBGrids.hpp>
#include <Grids.hpp>
//---------------------------------------------------------------------------
class TBrPartsForm : public TForm
{
__published:	// IDE-managed Components
	TPanel *Panel1;
	TDBNavigator *DBNavigator1;
	TButton *EditBtn;
	TSpeedButton *ActivateBtn;
	TPanel *Panel2;
	TButton *CloseBtn;
	TDBGrid *PartsGrid;
	TBevel *Bevel1;
	void __fastcall EditBtnClick(TObject *Sender);
	void __fastcall CloseBtnClick(TObject *Sender);
	void __fastcall ActivateQuery(TObject *Sender);
	void __fastcall FormShow(TObject *Sender);
private:	// User declarations
    double FPartNo;
    double GetPartNo();
    void SetPartNo(double);
 public:		// User declarations
    __property Double PartNo={read=GetPartNo,write=SetPartNo};
	virtual __fastcall TBrPartsForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TBrPartsForm *BrPartsForm;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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