123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- //---------------------------------------------------------------------------
- #ifndef FrmMainFH
- #define FrmMainFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include "cxContainer.hpp"
- #include "cxControls.hpp"
- #include "cxEdit.hpp"
- #include "cxGraphics.hpp"
- #include "cxLookAndFeelPainters.hpp"
- #include "cxLookAndFeels.hpp"
- #include "cxMaskEdit.hpp"
- #include "cxSpinEdit.hpp"
- #include "cxTextEdit.hpp"
- #include "dxSkinBlack.hpp"
- #include "dxSkinMcSkin.hpp"
- #include "dxSkinsCore.hpp"
- #include "cxButtons.hpp"
- #include <Menus.hpp>
- #include "cxDropDownEdit.hpp"
- //---------------------------------------------------------------------------
- class TFrmMain : public TForm
- {
- __published: // IDE-managed Components
- TLabel *Label1;
- TLabel *Label2;
- TLabel *Label3;
- TLabel *Label4;
- TLabel *lblIssueDays;
- TcxTextEdit *EdSecretValue;
- TcxButton *btnLicenseGenerateXml;
- TLabel *Label5;
- TLabel *Label6;
- TLabel *Label7;
- TLabel *Label8;
- TLabel *Label9;
- TcxComboBox *CboLoginType;
- TcxTextEdit *EdThumbPrint;
- TcxTextEdit *EdAppName;
- TcxTextEdit *EdAppVersion;
- TcxTextEdit *EdDomain;
- TcxTextEdit *EdMipDataPath;
- TcxTextEdit *EdTenantId;
- TcxTextEdit *EdClientId;
- TcxTextEdit *EdEmail;
- TLabel *LblHint;
- void __fastcall btnLicenseGenerateXmlClick(TObject *Sender);
- void __fastcall CboLoginTypePropertiesChange(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TFrmMain(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFrmMain *FrmMain;
- //---------------------------------------------------------------------------
- #endif
|