git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
31 lines
997 B
C++
31 lines
997 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef AboutDemoFormH
|
|
#define AboutDemoFormH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "cxContainer.hpp"
|
|
#include "cxControls.hpp"
|
|
#include "cxEdit.hpp"
|
|
#include "cxMemo.hpp"
|
|
#include "cxRichEdit.hpp"
|
|
#include "cxTextEdit.hpp"
|
|
//---------------------------------------------------------------------------
|
|
class TformAboutDemo : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TcxRichEdit *redDescription;
|
|
private: // User declarations
|
|
void __fastcall AssignBounds();
|
|
public: // User declarations
|
|
__fastcall TformAboutDemo(TComponent* Owner);
|
|
__fastcall TformAboutDemo(const String ADescription);
|
|
};
|
|
|
|
void ShowAboutDemoForm();
|
|
//---------------------------------------------------------------------------
|
|
#endif
|