📄 workcurvetype.cpp
字号:
//---------------------------------------------------------------------------
#pragma hdrstop
#include <vcl.h>
#include "workcurvetype.h"
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
Tfmworkcurve_drawtype *fmworkcurve_drawtype;
//---------------------------------------------------------------------------
__fastcall Tfmworkcurve_drawtype::Tfmworkcurve_drawtype(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall Tfmworkcurve_drawtype::FormShow(TObject *Sender)
{
this->ActiveControl=Button1;
btOK=false;
worktype=0;
}
//---------------------------------------------------------------------------
void __fastcall Tfmworkcurve_drawtype::Button1Click(TObject *Sender)
{
btOK=true;
Close();
worktype=RadioGroup1->ItemIndex;
}
//---------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -