selwincertform.h
来自「著名的SecureBlackBox控件完整源码」· C头文件 代码 · 共 49 行
H
49 行
//---------------------------------------------------------------------------
#ifndef SelWinCertFormH
#define SelWinCertFormH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ComCtrls.hpp>
#include <ExtCtrls.hpp>
#include "SBWinCertStorage.hpp"
#include "SBX509.hpp"
#include "SBX509Ext.hpp"
#include "SBUtils.hpp"
//---------------------------------------------------------------------------
class TfrmSelWinCert : public TForm
{
__published: // IDE-managed Components
TLabel *Label1;
TListView *lvCerificates;
TButton *btnOK;
TButton *btnCancel;
TPanel *Panel1;
TLabel *lbPrivateKey;
TLabel *dlbPrivateKey;
TLabel *lbUsage;
TLabel *dlbUsage;
void __fastcall FormCreate(TObject *Sender);
void __fastcall FormDestroy(TObject *Sender);
void __fastcall lvCerificatesChange(TObject *Sender,
TListItem *Item, TItemChange Change);
private: // User declarations
TElX509Certificate* FCertificate;
public: // User declarations
__fastcall TfrmSelWinCert(TComponent* Owner);
TElWinCertStorage* WinCertStorage;
void UpdateCertificates(void);
void UpdateCertInfo(void);
__property TElX509Certificate* Certificate = {read = FCertificate};
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmSelWinCert *frmSelWinCert;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?