![]() |
Delphi-Version: 7
von ComboBox abgeleitete Komponente
Hallo,
ich stehe gerade auf dem Schlauch. Ich möchte von TComboBox eine Komponente ableiten, im Wesentlichen so:
Delphi-Quellcode:
Der wesentliche Unterschied zur Originalkomponente:
type
TComComboBox = class(TComboBox) private Popup: TPopupMenu; public constructor Create(AOwner: TComponent); override; destructor Destroy; override; published property Items; end; Die ComComboBox soll bereits mit Systeminfos aufgefüllt sein (und ein Popup-Menü besitzen). Mein Problem: Wie und wo fülle ich meine Strings in die Items ein? Im Constructor? Wie? Danke! |
AW: von ComboBox abgeleitete Komponente
Delphi-Quellcode:
Eventuell so?
unit Unit1;
interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Menus; type TXComboBox = class(TComboBox) strict private FPopupMenu: TPopupMenu; public constructor Create(AOwner: TComponent); override; public property PopupMenu: TPopupMenu read FPopupMenu write FPopupMenu; end; type TForm1 = class(TForm) procedure FormCreate(Sender: TObject); private { Private declarations } FComboBox: TXComboBox; public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} constructor TXComboBox.Create(AOwner: TComponent); begin inherited Create(AOwner); Parent := TWinControl(AOwner); FPopupMenu := nil; Items.Add('Foo'); Items.Add('Bar'); end; procedure TForm1.FormCreate(Sender: TObject); begin FComboBox := TXComboBox.Create(Self); FComboBox.Left := 10; FComboBox.Top := 10; end; end. |
AW: von ComboBox abgeleitete Komponente
Super, danke für die schnelle Hilfe! :-)
Delphi-Quellcode:
Der wars, den hatte ich vergessen. :(
Parent := TWinControl(AOwner);
|
AW: von ComboBox abgeleitete Komponente
An dieser Stelle besser (AOwner as TWinControl), falls es doch mal kein WinControl ist.
|
AW: von ComboBox abgeleitete Komponente
Zitat:
Zitat:
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 18:31 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz