buliangcha.pas

来自「本系统为演示Delphi的功能而开发设计」· PAS 代码 · 共 41 行

PAS
41
字号
unit BuLiangCha;

interface

uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  Buttons, ComCtrls, ExtCtrls, Grids, DBGrids, Spin;

type
  TBuLiangChaForm = class(TForm)
    GroupBox1: TGroupBox;
    Label3: TLabel;
    Label4: TLabel;
    DBGrid1: TDBGrid;
    ButtonSelect: TButton;
    ButtonPrint: TButton;
    ButtonReturn: TButton;
    SpinEdit1: TSpinEdit;
    Label5: TLabel;
    ComboBox1: TComboBox;
    procedure ButtonReturnClick(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  BuLiangChaForm: TBuLiangChaForm;

implementation
uses huaxia;
{$R *.DFM}

procedure TBuLiangChaForm.ButtonReturnClick(Sender: TObject);
begin
Close;
end;

end.

⌨️ 快捷键说明

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