BmpViewer.dpr
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. program BmpViewer;
  2. uses
  3.   Forms,
  4.   BmpViewForm in 'BmpViewForm.pas' {FormBmpViewer},
  5.   BmpPreview in 'BmpPreview.pas' {PreviewForm};
  6. {$R *.RES}
  7. begin
  8.   Application.CreateForm(TFormBmpViewer, FormBmpViewer);
  9.   Application.CreateForm(TPreviewForm, PreviewForm);
  10.   Application.Run;
  11. end.