I need help to make a control property that when you click on it, it pop-up a custom dialog like settings. just like the TPicture.

any Idea or suggestions?

link|improve this question

+1 no idea why anyone downvoted a good question – David Heffernan Jan 21 at 13:42
@David: Somehow all the recent Delphi questions have a downvote without any comment on why.. Maybe somebody doesn't understand what the arrows are for? :) – Wouter van Nifterick Jan 21 at 15:43
feedback

1 Answer

up vote 5 down vote accepted

If your class is used as a property of other components and you want to use the Object Inspector to invoke your dialog, then you have to implement and register a custom Property Editor, eg:

interface

uses
  DesignIntf, DesignEditors;

type
  TMyClassProperty = class(TPropertyEditor)
  public
    procedure Edit; override;
    function GetAttributes: TPropertyAttributes; override;
  end;

procedure Register;

implementation

uses
  MyClassUnit;

procedure TMyClassProperty.Edit;
begin
  with TMyDialog.Create(nil) do
  try
    ShowModal;
  finally
    Free;
  end;
end;

function TMyClassProperty.GetAttributes: TPropertyAttributes;
begin
  Result := inherited GetAttributes + [paDialog];
end;

procedure Register;
begin
  RegisterPropertyEditor(TypeInfo(TMyClass), nil, '', TMyClassProperty);
end;
link|improve this answer
+1 I mis-read the question – David Heffernan Jan 21 at 16:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.