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

📄 aboutu.cpp

📁 这是个16路采集器的上位机源码。该套程序是由C++builder开发的
💻 CPP
字号:
//---------------------------------------------------------------------------

#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -