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

Delphi控件源码

开发平台:

Delphi

  1. unit MemoForm;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, FormOperations, StdCtrls, SaveStatusForms;
  6. type
  7.   TFormMemo = class(TSaveStatusForm, IFormOperations)
  8.     Memo1: TMemo;
  9.     OpenDialog1: TOpenDialog;
  10.     SaveDialog1: TSaveDialog;
  11.   private
  12.     { Private declarations }
  13.   public
  14.     procedure Load;
  15.     procedure Save;
  16.   end;
  17. var
  18.   FormMemo: TFormMemo;
  19. implementation
  20. {$R *.DFM}
  21. { TForm2 }
  22. procedure TFormMemo.Load;
  23. begin
  24.   if OpenDialog1.Execute then
  25.     Memo1.Lines.LoadFromFile(OpenDialog1.FileName);
  26. end;
  27. procedure TFormMemo.Save;
  28. begin
  29.   if SaveDialog1.Execute then
  30.     Memo1.Lines.SaveToFile(SaveDialog1.FileName);
  31. end;
  32. end.