ucmatrix.pas
上传用户:hbszzs
上传日期:2008-08-20
资源大小:628k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit ucmatrix;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls, VrControls, VrMatrix;
  6. type
  7.   TForm1 = class(TForm)
  8.     VrMatrix1: TVrMatrix;
  9.     Edit1: TEdit;
  10.     Button1: TButton;
  11.     Memo1: TMemo;
  12.     procedure Button1Click(Sender: TObject);
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18. var
  19.   Form1: TForm1;
  20. implementation
  21. {$R *.DFM}
  22. procedure TForm1.Button1Click(Sender: TObject);
  23. begin
  24.   VrMatrix1.Text := Edit1.Text;
  25. end;
  26. end.