Ich dachte dass dieser Property automatisch an allen TShortCut hängt. (bei uns ist es jedenfalls so)
Delphi-Quellcode:
// unit VCLEditors
procedure Register;
begin
RegisterPropertyEditor(TypeInfo(TShortCut), TDeineKlasse, '
DeinProperty', TShortCutProperty);
Normaler Weise sind die typspezifischen Standardeditoren "automatisch" für alle alle Klassen und Property jenes Types registriert,
also quasi so
RegisterPropertyEditor(TypeInfo(TShortCut), nil, '', TShortCutProperty);
.