unit1.pas
来自「强大的皮肤控件 能做出美观的界面」· PAS 代码 · 共 43 行
PAS
43 行
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
se_controls, KsSkinForms, KsSkinEngine, KsSkinButtons, StdCtrls;
type
TForm1 = class(TForm)
SeSkinEngine1: TSeSkinEngine;
SeSkinForm1: TSeSkinForm;
SeSkinButton1: TSeSkinButton;
Label1: TLabel;
procedure FormCreate(Sender: TObject);
procedure SeSkinButton1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
uses KsSkinVersion;
{$R *.DFM}
procedure TForm1.FormCreate(Sender: TObject);
begin
Caption := 'Store Skin''s Demo - ' + sSeSkinVersion;
end;
procedure TForm1.SeSkinButton1Click(Sender: TObject);
begin
Close;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?