- Mustangpeak Common Library - 1.7.0 - EasyListview - 1.7.0 git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.Mustangpeak@2 60b41242-d4b9-2247-b156-4ccd40706241
29 lines
1.0 KiB
C++
29 lines
1.0 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef Unit1H
|
|
#define Unit1H
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "EasyListview.hpp"
|
|
#include "EasyLVCommonObjects.hpp"
|
|
//---------------------------------------------------------------------------
|
|
class TForm1 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TEasyListview *EasyListview1;
|
|
void __fastcall FormCreate(TObject *Sender);
|
|
void __fastcall EasyListview1ItemGetCaption(
|
|
TCustomEasyListview *Sender, TEasyItem *Item, int Column,
|
|
WideString &Caption);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm1(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TForm1 *Form1;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|