📄 gettreeinfou.pas
字号:
unit GetTreeInfoU;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, GetInfoTemplateU, StdCtrls, Spin, ExtCtrls;
type
TfrmGetTreeInfo = class(TfrmGetInfoTemplate)
lblProtea: TLabel;
protected
function GetSightType: string;
public
property SightType: string read GetSightType;
end; // end TfrmGetTreeInfo = class(TfrmGetInfoTemplate)
var
frmGetTreeInfo: TfrmGetTreeInfo;
implementation
{$R *.dfm}
{ TfrmGetTreeInfo }
function TfrmGetTreeInfo.GetSightType: string;
begin
Result := 'Protea Curvata';
end; // end function TfrmGetTreeInfo.GetSightType
end. // end unit GetTreeInfoU
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -