specs.cpp
来自「TeeChart Pro ActiveX是西班牙Steema SL公司开发的图表」· C++ 代码 · 共 24 行
CPP
24 行
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "specs.h"
#include <TeeAbout.hpp>
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TChartSpecs *ChartSpecs;
//---------------------------------------------------------------------------
__fastcall TChartSpecs::TChartSpecs(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TChartSpecs::BitBtn2Click(TObject *Sender)
{
TTeeAboutForm* form = new TTeeAboutForm(this);
form->ShowModal();
delete form;
}
//---------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?