我想使用名称值对的组合框控件作为项目. ComboBox将TStrings作为其项目,这样就可以了.
不幸的是,组合框上的绘图方法会绘制Item [i],以便在框中获取Name = Value.
我希望该值被隐藏,所以我可以使用代码中的值,但用户看到该名称.
有任何想法吗?
procedure TForm1.ComboBox1DrawItem(Control: TWinControl; Index: Integer; Rect: TRect; State: TOwnerDrawState); begin ComboBox1.Canvas.TextRect(Rect,Rect.Left,Rect.Top,ComboBox1.Items.Names[Index]); end;