Frequently Asked Component Specific Questions
Options |
|
Display all FAQ items |
Displaying items 1 to 1 of 1, page 1 of 1
<< previous next >>

TMS Smooth Controls PackUsing the GDIPPictureContainerEditor at runtime
With this code you can use the design time editor at runtime:
uses
GDIPPictureContainerEditor;
procedure TForm4.Button1Click(Sender: TObject);
var
GDIPPicEdit: TGDIPPictureContainerEditor;
p: TPictureCollection;
begin
GDIPPicEdit := TGDIPPictureContainerEditor.Create(Application);
try
GDIPPicEdit.PictureCol := GDIPPictureContainer1.Items;
GDIPPicEdit.Init;
GDIPPicEdit.ShowModal;
finally
GDIPPicEdit.Free;
end;
end;