List.cpp
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:1k
源码类别:

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "List.h"
  5. //---------------------------------------------------------------------------
  6. #pragma package(smart_init)
  7. #pragma resource "*.dfm"
  8. TForm1 *Form1;
  9. //---------------------------------------------------------------------------
  10. __fastcall TForm1::TForm1(TComponent* Owner)
  11.         : TForm(Owner)
  12. {
  13. }
  14. //---------------------------------------------------------------------------
  15. void __fastcall TForm1::FormCreate(TObject *Sender)
  16. {
  17.  Form1->ComboBox1->Items=Screen->Fonts;
  18.  Form1->ListBox1->Items=Screen->Fonts;
  19.  //设置列表框控件的列表项
  20.  Form1->Memo1->Lines->LoadFromFile("如果你是我的传说.txt");
  21.  //设置文本框显示内容
  22. }
  23. //---------------------------------------------------------------------------
  24. void __fastcall TForm1::ListBox1Click(TObject *Sender)
  25. {
  26.   Memo1->Font->Name=ListBox1->Items->Strings[ListBox1->ItemIndex];
  27.   //为Memo控件应用选中的字体
  28.   ComboBox1->ItemIndex=ListBox1->ItemIndex;
  29.   //显示相应的关联选项
  30. }
  31. //---------------------------------------------------------------------------
  32. void __fastcall TForm1::ComboBox1Click(TObject *Sender)
  33. {
  34.   ListBox1->ItemIndex=ComboBox1->ItemIndex;
  35.   //显示相应的关联选项
  36.   Memo1->Font->Name=ListBox1->Items->Strings[ListBox1->ItemIndex];
  37.   //为Memo控件应用选中的字体
  38. }
  39. //---------------------------------------------------------------------------