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

📄 unit6.cpp

📁 毕业设计图像处理软件及源代码对毕业生会有所帮助
💻 CPP
字号:
//---------------------------------------------------------------------------

#include <vcl.h>
#pragma hdrstop

#include "Unit6.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm6 *Form6;
extern int iReturnValue;
extern int ilineB;
extern float flineA;
//---------------------------------------------------------------------------
__fastcall TForm6::TForm6(TComponent* Owner)
        : TForm(Owner)
{
}
//---------------------------------------------------------------------------

void __fastcall TForm6::TrackBar1Change(TObject *Sender)
{
        Label6->Caption=IntToStr(TrackBar1->Position);
}
//---------------------------------------------------------------------------

void __fastcall TForm6::FormShow(TObject *Sender)
{
        iReturnValue=0;
}
//---------------------------------------------------------------------------

void __fastcall TForm6::BitBtn1Click(TObject *Sender)
{

        flineA=StrToFloat(Edit1->Text);
        ilineB=StrToInt(Label6->Caption);
        if(flineA<=0||flineA>10)
        {
                MessageBox(NULL,"您设的a值不正确","error",MB_OK);
                return;
        }
        iReturnValue=1;
        this->Close();
}
//---------------------------------------------------------------------------
void __fastcall TForm6::BitBtn2Click(TObject *Sender)
{
        this->Close();        
}
//---------------------------------------------------------------------------
void __fastcall TForm6::UpDown1Changing(TObject *Sender, bool &AllowChange)
{
        Edit1->Text=FloatToStr(1+UpDown1->Position/10.0 );
}
//---------------------------------------------------------------------------

⌨️ 快捷键说明

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