TComboBox的派生类中,如果希望对下拉框的列表显示的内容进行加工,覆盖了继承来这个方法没有效果,应该怎样做?

hncdczp 2003-08-04 03:46:20
unit bsComboBox;

interface

uses
// SysUtils, Classes, Controls, StdCtrls;
Messages, {$IFDEF LINUX} WinUtils, {$ENDIF} Windows, SysUtils, Classes,
Controls, Forms, Menus, Graphics,StdCtrls;
type
TbsComboBox = class(TComboBox)
private
FRefName: string;
{ Private declarations }
protected
procedure DrawItem(Index: Integer; Rect: TRect; State: TOwnerDrawState); overload; override;
{ Protected declarations }
public
{ Public declarations }
published
property RefName: string read FRefName write FRefName;
{ Published declarations }
end;

procedure Register;

implementation

procedure Register;
begin
RegisterComponents('Standard', [TbsComboBox]);
end;

procedure TbsComboBox.DrawItem(Index: Integer; Rect: TRect; State:
TOwnerDrawState);
var S: String;
begin
TControlCanvas(Canvas).UpdateTextFlags;
if Assigned(OnDrawItem) then OnDrawItem(Self, Index, Rect, State)
else
begin
Canvas.FillRect(Rect);
S := Copy(Items[Index],1 ,AnsiPos(Items[Index],'=') -1);
if Index >= 0 then
Canvas.TextOut(Rect.Left + 2, Rect.Top, Copy(Items[Index],1 ,AnsiPos('=',Items[Index]) -1));

end;
end;

end.
...全文
41 2 打赏 收藏 转发到动态 举报
写回复
用AI写文章
2 条回复
切换为时间正序
请发表友善的回复…
发表回复
hncdczp 2003-08-05
  • 打赏
  • 举报
回复
?????
hncdczp 2003-08-04
  • 打赏
  • 举报
回复
自己UP

5,930

社区成员

发帖
与我相关
我的任务
社区描述
Delphi 开发及应用
社区管理员
  • VCL组件开发及应用社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧