📄 issuelistform.h
字号:
//---------------------------------------------------------------------------
#ifndef IssueListFormH
#define IssueListFormH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <DBCtrls.hpp>
#include <ExtCtrls.hpp>
#include "cxControls.hpp"
#include "cxNavigator.hpp"
class TIssueListGridForm;
//---------------------------------------------------------------------------
class TfrmBasic : public TForm
{
__published:
TLabel *lbCaption;
TPanel *plTop;
TcxNavigator *cxNavigator;
private:
TIssueListGridForm* FGridForm;
String GetCaption();
void SetCaption(String ACaption);
public:
__fastcall TfrmBasic(TComponent* Owner);
__property String Caption = {read=GetCaption,write = SetCaption};
__property TIssueListGridForm *GridForm = {read = FGridForm};
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmBasic *frmBasic;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -