uviewemployeephoto.pas

来自「说明: 比较简单的人事档案管理程序,包含了人事档案的大部分功能,做人事档案的兄」· PAS 代码 · 共 32 行

PAS
32
字号
unit UViewEmployeePhoto;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs,jpeg, ExtCtrls;

type
  TForm_ViewEmployeePhoto = class(TForm)
    Image1: TImage;
    procedure FormShow(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form_ViewEmployeePhoto: TForm_ViewEmployeePhoto;

implementation
uses UViewEmployee;
{$R *.dfm}

procedure TForm_ViewEmployeePhoto.FormShow(Sender: TObject);
begin
image1.Picture:=Form_ViewEmployee.Image1.Picture;
end;

end.

⌨️ 快捷键说明

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