dxFlowChart运行时调出编辑器

dxFlowChart运行时调出编辑器

uses dxFcEdit;

procedure TForm1.Button1Click(Sender: TObject);
var f: TFChartEditor;
begin
f := TFChartEditor.Create(nil);
f.Caption := 'test';
f.Show;
end;

原文地址:https://www.cnblogs.com/hnxxcxg/p/7053679.html