⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unit1.~pas

📁 这有很多Delphi应用的例子
💻 ~PAS
字号:
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, Grids, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    StringGrid1: TStringGrid;
    Memo1: TMemo;
    procedure FormCreate(Sender: TObject);
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.FormCreate(Sender: TObject);
begin
  With StringGrid1 do
  Begin
    Cells[0,0]:='学号';
    Cells[1,0]:='姓名';
    Cells[2,0]:='年龄';
    Cells[0,1]:='0780001';
    Cells[1,1]:='张三';
    Cells[2,1]:='25';
    Cells[0,2]:='0780002';
    Cells[1,2]:='李四';
    Cells[2,2]:='23';
  End
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
  Memo1.Clear ;
  Memo1.Lines.AddStrings(StringGrid1.Rows[1]);
  Memo1.Lines.AddStrings(StringGrid1.Rows[1]);
  Button1.Enabled:=False;
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -