cobobox style csOwnerDrawFixed
procedure TForm1.ComboBox1DrawItem(Control: TWinControl;
Index: Integer;
Rect: TRect;
State: TOwnerDrawState);
var i:integer;
begin
i:=(combobox1.Width-combobox1.Canvas.TextWidth(combobox1.Items[index])) div 2;
combobox1.Canvas.TextRect(rect,Rect.Left+i ,rect.Top,combobox1.Items[index]);
end;