本文主要是介绍BCB中的TCheckBox复选框,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
复选框在Windows应用程序中的用途太广泛了, 下面, 我们看看BCB中的复选框, 代码如下:
//---------------------------------------------------------------------------#include <vcl.h>
#pragma hdrstop#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner): TForm(Owner)
{
}
//---------------------------------------------------------------------------void __fastcall TForm1::Button1Click(TObject *Sender)
{int result = 0;if(CheckBox1->Checked){result += 1;}if(CheckBox2->Checked){result += 2;}if(CheckBox3->Checked){result += 4;}ShowMessage(result); // 应用程序根据result的结果便知
这篇关于BCB中的TCheckBox复选框的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!