Delphi 2010
如何为我的组件创建文件夹(目录)属性编辑器?
我能够使用:
轻松地为FileName属性创建一个TFileProperty = class(TStringProperty)
public
function GetAttributes: TPropertyAttributes; override;
procedure Edit; override;
end;
RegisterPropertyEditor(TypeInfo(TFileName),nil, '', TFileProperty);
我认为可能需要更多的工作,因为我认为我需要创建一个类来注册,并以某种方式调用selDir api例程或其他东西
感谢您提供的任何帮助
答案 0 :(得分:3)
我认为我有一些工作要做,除非别人可以提出更好的东西
type
TFolderName = String;
TFolderNameProperty = class(TStringProperty)
public
function GetAttributes: TPropertyAttributes; override;
procedure Edit; override;
end;
function TFolderNameProperty.GetAttributes: TPropertyAttributes;
begin
Result := [paDialog]
end {GetAttributes};
procedure TFolderNameProperty.Edit;
var
Dir: String;
begin
SelectDirectory('Select a directory', '', Dir)
SetValue(Dir);
end {Edit};
procedure Register;
begin
RegisterPropertyEditor(TypeInfo(TFolderName),nil, '', TFolderNameProperty)
end;