devicetimeinputunit.h

来自「指纹门禁机管理系统」· C头文件 代码 · 共 37 行

H
37
字号
//---------------------------------------------------------------------------

#ifndef DeviceTimeInputUnitH
#define DeviceTimeInputUnitH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "BaseInputUnit.h"
#include <Buttons.hpp>
#include <ComCtrls.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TDeviceTimeInputFrm : public TBaseDataInputFrm
{
__published:	// IDE-managed Components
        TDateTimePicker *dtpDate;
        TDateTimePicker *dtpTime;
    TLabel *Label1;
    TLabel *Label2;
    TEdit *edtDeviceName;
    TBevel *Bevel1;
        void __fastcall bbtnOKClick(TObject *Sender);
        void __fastcall FormShow(TObject *Sender);
private:
        SYSTEMTIME SetTime;
public:
        bool GetSetTime(SYSTEMTIME& oSetTime);
        void SetDeviceName(char* iDeviceName);
        __fastcall TDeviceTimeInputFrm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TDeviceTimeInputFrm *DeviceTimeInputFrm;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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