⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stocksmodify.h

📁 DevExpress公司出品的Borland Delphi和C++ Builder的控件(包含完整源代码)。 ExpressSpreadSheet:交叉数据表格控件。 一款Delphi
💻 H
字号:
//---------------------------------------------------------------------------
#ifndef StocksModifyH
#define StocksModifyH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "cxSSCtrls.hpp"
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TControlAccess : public TControl {
public:
	__property Caption;
};

class TStocksModifyForm : public TForm
{
__published:	// IDE-managed Components
  TButton *btnOk;
  TButton *btnCancel;
  TPanel *gpPanel;
  TRadioButton *rbShiftCol;
  TRadioButton *rbShiftRw;
  TRadioButton *rbRw;
  TRadioButton *rbCol;
  TcxLabelBevel *cxLB;
  void __fastcall FormKeyPress(TObject *Sender, char &Key);
private:	// User declarations
  TcxSSCellsModify FModifySheet;
  void __fastcall SetCaptions(AnsiString ACaptions[8]);
public:		// User declarations
  __fastcall TStocksModifyForm(TComponent* Owner);
  bool __fastcall Execute(TcxSSModifyType AModifySheet);
  __property TcxSSCellsModify Modify = {read = FModifySheet, write = FModifySheet};
};
//---------------------------------------------------------------------------
extern PACKAGE TStocksModifyForm *StocksModifyForm;
//---------------------------------------------------------------------------
#endif
 

⌨️ 快捷键说明

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