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

📄 zuozhe.pas

📁 欢迎使用考勤管理系统v1.0 企业员工的考勤工作历来是人事与财务部门比较头疼的问题。不仅工作量大
💻 PAS
字号:
unit zuozhe;

interface

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

type
  TzuozheForm = class(TForm)
    RichEdit1: TRichEdit;
    BitBtn1: TBitBtn;
    procedure BitBtn1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  zuozheForm: TzuozheForm;

implementation

{$R *.dfm}

procedure TzuozheForm.BitBtn1Click(Sender: TObject);
begin
zuozheform.close;
end;

end.

⌨️ 快捷键说明

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