....so, ich möchte gerne über meine ersten Schritte berichten, damit Ihr mich gleich bremsen könnt, wenn ich was falsch mache.
So weit bin ich bis jetzt gekommen:
Delphi-Quellcode:
unit TaggedCoBo;
interface
uses
Windows, Messages, SysUtils, Classes, Controls, StdCtrls;
type
TTaggedComboBox =
class(TComboBox)
private
{ Private declarations }
protected
{ Protected declarations }
function GetItemsClass: TCustomComboBoxStringsClass;
override;
public
{ Public declarations }
published
{ Published declarations }
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('
My_Components', [TTaggedComboBox]);
end;
function TTaggedComboBox.GetItemsClass: TCustomComboBoxStringsClass;
begin
//Hier sollte ich jetzt wohl was machen ;-)
inherited;
end;
end.
OK, da steckt inhaltlich noch nicht viel drin, ich bin mir aber trotzdem schon unsicher, ob das alles so passt.
Gruß,
StTüff