Delphi XE2 之 FireMonkey 入門(42) – 控制項基礎: TComboBox、TComboEdit

來源:互聯網
上載者:User
TListBox 有兩個兄弟 TComboListBox、TComboEditListBox;

TComboBox、TComboEdit 雖不是不是從它們繼承, 但分別包含了它們, 所以使用起來都有點像 TListBox.

TComboBox 更像 TListBox, 比 TComboEdit 多出了 Selected 等成員;
TComboEdit 是從 TCustomEdit 繼承, 和 TEdit 是兄弟, 比 TComboBox 多出了 Text 等成員.

它們的公用常用屬性:

DropDownCount //下拉式清單行的數ItemHeight    //ItemIndex     //Items         //Count         //
測試:
procedure TForm1.FormCreate(Sender: TObject);var  i: Integer;begin  { ComboBox1 }  for i := 0 to 9 do    ComboBox1.Items.Add(Format('Item_%d', [i]));  with ComboBox1 do  begin    ItemIndex := 0;    DropDownCount := 5;    ListBox.UseSmallScrollBars := True;    TListBox(ListBox).AlternatingRowBackground := True; //這個兄弟轉換用得有點懸, 只是為了讓 AlternatingRowBackground 屬性暴露出來  end;  { ComboEdit1 }  ComboEdit1.Items.Assign(ComboBox1.Items);  with ComboEdit1 do  begin    ItemIndex := 0;    DropDownCount := 5;    ListBox.UseSmallScrollBars := True;    TListBox(ListBox).AlternatingRowBackground := True;  end;//  ComboEdit1.Text := 'Text';end;

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.