demorating.h

来自「delphi的的三方控件」· C头文件 代码 · 共 47 行

H
47
字号
//---------------------------------------------------------------------------

#ifndef DemoRatingH
#define DemoRatingH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "cxButtons.hpp"
#include "cxContainer.hpp"
#include "cxControls.hpp"
#include "cxEdit.hpp"
#include "cxLookAndFeelPainters.hpp"
#include "cxMemo.hpp"
#include "cxRadioGroup.hpp"
#include "cxTextEdit.hpp"
//---------------------------------------------------------------------------
class TDemoRatingForm : public TForm
{
__published:	// IDE-managed Components
  TLabel *Label1;
  TLabel *Label2;
  TLabel *Label3;
  TLabel *Label4;
  TcxMemo *memRateDescrip;
  TcxButton *btnSend;
  TcxRadioGroup *rgRate;
  void __fastcall rgRateChange(TObject *Sender);
  void __fastcall btnSendClick(TObject *Sender);
private:	// User declarations
  static AnsiString OurEmail;
  static AnsiString EmailSubj;
  void __fastcall AdjustMessageBody(String &ABody, String ASearchStr,
    String AReplaceStr);
public:		// User declarations
  __fastcall TDemoRatingForm(TComponent* Owner);
};

AnsiString TDemoRatingForm::OurEmail = "Support@devexpress.com";
AnsiString TDemoRatingForm::EmailSubj = "cxVerticalGrid.Demos.";

//---------------------------------------------------------------------------
extern PACKAGE TDemoRatingForm *DemoRatingForm;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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