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

📄 buliangcha.pas

📁 本系统为演示Delphi的功能而开发设计
💻 PAS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -