⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 about.cpp

📁 rx library V2.7.7a component use in delphi7 to delphi 2006
💻 CPP
字号:
//---------------------------------------------------------------------------
#include <vcl\vcl.h>
#pragma hdrstop

#include "About.h"
#include "LinkUnit.h"
//---------------------------------------------------------------------------
#pragma link "RXCtrls"
#pragma link "RXConst"
#pragma resource "*.dfm"
TAboutForm *AboutForm;
//---------------------------------------------------------------------------
__fastcall TAboutForm::TAboutForm(TComponent* Owner)
        : TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::FormCreate(TObject *Sender)
{
    AppIcon->Picture->Icon = Application->Icon;
    AppIcon->Cursor = (TCursor)crHand;
    WebLabel->Cursor = (TCursor)crHand;
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::AppIconDblClick(TObject *Sender)
{
    SecretPanel1->Active = true;
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::SecretPanel1DblClick(TObject *Sender)
{
    SecretPanel1->Active = false;
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::WebLabelClick(TObject *Sender)
{
    RxWebSite();
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::WebLabelActivate(TObject *Sender)
{
    if (WebLabel->MouseInControl) {
      WebLabel->Font->Color = clHighlight;
    }
    else {
      WebLabel->Font->Color = clWindowText;
    }

}
//---------------------------------------------------------------------------

⌨️ 快捷键说明

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