Unit1.cpp
上传用户:daoqigc
上传日期:2021-04-20
资源大小:2795k
文件大小:2k
- //---------------------------------------------------------------------------
- #include <vclvcl.h>
- #pragma hdrstop
- #include "Unit1.h"
- //---------------------------------------------------------------------------
- #pragma link "RichView"
- #pragma link "RVScroll"
- #pragma link "RVStyle"
- #pragma link "RVTable"
- #pragma resource "*.dfm"
- TForm1 *Form1;
- //---------------------------------------------------------------------------
- __fastcall TForm1::TForm1(TComponent* Owner)
- : TForm(Owner)
- {
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::FormCreate(TObject *Sender)
- {
- rv->AddNL("Virtual Greengrocery",0,1);
- rv->AddNL("",0,1);
- TRVTableItemInfo*table = new TRVTableItemInfo(2,2,rv->RVData);
- table->BorderColor = clSilver;
- table->BorderStyle = rvtbColor;
- table->BorderWidth = 2;
- table->Cells[0][0]->Clear();
- table->Cells[1][0]->Clear();
- table->Cells[0][1]->Clear();
- table->Cells[1][1]->Clear();
- table->Cells[0][0]->AddNL("Select fruits:",0,0);
- table->Cells[1][0]->AddNL("Select vegetables:",0,0);
- table->Cells[0][0]->BestWidth = 200;
- table->Cells[0][1]->BestWidth = 120;
- table->CellPadding = 5;
- table->ParaNo = 1;
- TRVComboItemInfo*item = new TRVComboItemInfo(rv->RVData, 1, "");
- item->MinWidth = 100;
- item->Items->Add("apple");
- item->Items->Add("banana");
- item->Items->Add("pear");
- table->Cells[0][1]->AddItem("", item);
- item = new TRVComboItemInfo(rv->RVData, 1, "");
- item->Items->Add("cucumber");
- item->Items->Add("tomato");
- item->MinWidth = 100;
- table->Cells[1][1]->AddItem("", item);
- rv->AddItem("", table);
- rv->AddNL("(click the gray square to select)",0,1);
- rv->Format();
- }
- //---------------------------------------------------------------------------