aboutu.cpp
来自「这是个16路采集器的上位机源码。该套程序是由C++builder开发的」· C++ 代码 · 共 44 行
CPP
44 行
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "AboutU.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "Button3D"
#pragma resource "*.dfm"
TAboutFrm *AboutFrm;
//---------------------------------------------------------------------------
__fastcall TAboutFrm::TAboutFrm(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TAboutFrm::Button3D1Click(TObject *Sender)
{
this->Close();
}
//---------------------------------------------------------------------------
void __fastcall TAboutFrm::Label7Click(TObject *Sender)
{
ShellExecute(this,NULL,Label7->Caption.c_str(),NULL,NULL,SW_SHOWNORMAL);
}
//---------------------------------------------------------------------------
void __fastcall TAboutFrm::FormMouseMove(TObject *Sender,
TShiftState Shift, int X, int Y)
{
Label7->Font->Color=clNavy;
}
//---------------------------------------------------------------------------
void __fastcall TAboutFrm::Label7MouseMove(TObject *Sender,
TShiftState Shift, int X, int Y)
{
Label7->Font->Color=clRed;
}
//---------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?