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

📄 uabout.cpp

📁 VC各工程的源码集合
💻 CPP
字号:
//---------------------------------------------------------------------------
// 关于对话框 - About Form
// by ccrun(老妖) - info@ccrun.com
// Finishing www.codefans.net
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop

#include "uAbout.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TfrmAbout *frmAbout;
//---------------------------------------------------------------------------
__fastcall TfrmAbout::TfrmAbout(TComponent* Owner)
    : TForm(Owner)
{
}
//---------------------------------------------------------------------------
// 63 63 72 75 6E 2E 63 6F 6D
void __fastcall TfrmAbout::lblWebClick(TObject *Sender)
{
    ShellExecute(Handle, "Open", lblWeb->Caption.c_str(), NULL, NULL, SW_SHOW);
}
//---------------------------------------------------------------------------
void __fastcall TfrmAbout::lblMailClick(TObject *Sender)
{
    ShellExecute(Handle, "Open",
            (lblMail->Caption + "?subject=About:" + lblProgName->Caption).c_str(),
            NULL, NULL, SW_SHOW);
}
//---------------------------------------------------------------------------

⌨️ 快捷键说明

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