test1.pas
来自「示范如何制作 VCL 构件的属性值编辑器」· PAS 代码 · 共 46 行
PAS
46 行
{
OBJECT : Component Design: Persistance, Property Editors
This example demonstrates how to define properties with user-
specific types and how to ensure that their contents will be
stored in the dfm file after closing the actual project.
FILES : test.dpr
test1.pas
comp.pas
proped.pas
LAST CHANGES: 16.12.1996
AUTHOR : Kurt Spitzley, email (101.10490@germanynet.de or Kurt.Spitzley@rz-online.de)
COPYRIGHT : (c) 1996 by Kurt Spitzley, All rights reserved.
This software should not be SOLD by anyone. It is distributed as
freeware and therefore may be used free of charge.
DISCLAIMER : I have provided this software to the public free of charge. You
accept this software AS IS without any representation or warranty
of any kind, including but not limited to the warranty of
merchantability or fitness for a particular purpose.
}
unit test1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Comp;
type
TForm1 = class(TForm)
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?