delphi ComboBoxEx的组件如何在主选项增加图标和文字

当我选择下面的Item后,不会在主选项上显示图标的,只会显示文字的...... 当我选择下面的Item后,不会在主选项上显示图标的,只会显示文字的... 展开
 我来答
onysue
2010-10-21 · 超过24用户采纳过TA的回答
知道答主
回答量:56
采纳率:0%
帮助的人:62.2万
展开全部
//参考如下代码去做
//code by onesue
unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ImgList, ComCtrls;

type
TForm1 = class(TForm)
ComboBoxEx1: TComboBoxEx;
ImageList1: TImageList;
Button1: TButton;
Button2: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
var
oneItem: TComboExItem;
index:Integer ;
begin
//直接添加
index:= ComboBoxEx1.Items.IndexOf('Test');
if index=-1 then
begin
oneItem:=ComboBoxEx1.ItemsEx.Add;
oneItem.Caption:='Test';
if ComboBoxEx1.Images <>nil then //要指定图片列表
begin
oneItem.ImageIndex:=1;
end;
end;
end;

procedure TForm1.Button2Click(Sender: TObject);
var
index:Integer ;
begin
//间接制定图片
index:= ComboBoxEx1.Items.IndexOf('Test2');
if index=-1 then
ComboBoxEx1.Items.Add('Test2');
index:= ComboBoxEx1.Items.IndexOf('Test2');
if index<>-1 then
begin
if ComboBoxEx1.Images <>nil then //要指定图片列表
begin
ComboBoxEx1.ItemsEx[index].ImageIndex:=0;
end;
end ;
end;

end.
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式