Menambahkan gambar pada combobox delphi

Rubah Style Pada Combobox Menjadi csOwnerDrawVariable atau csOwnerDrawFixed

procedure TForm1.ComboBox1DrawItem(Control: TWinControl; Index: Integer;
  Rect: TRect; State: TOwnerDrawState);
begin
ComboBox1.Canvas.FillRect(rect);
ImageList1.Draw(ComboBox1.Canvas,Rect.Left,rect.Top,Index);
ComboBox1.Canvas.TextOut(rect.Left+ImageList1.Width+1,rect.Top,ComboBox1.Items[index])
end; 

Sekian...
Title : Menambahkan gambar pada combobox delphi
Description : Rubah Style Pada Combobox Menjadi csOwnerDrawVariable atau csOwnerDrawFixed

0 Response to "Menambahkan gambar pada combobox delphi"

Post a Comment