📄 keyvaluecode.pas
字号:
unit KeyValueCode;
interface
type
TKeyValue = class
private
FKey: string;
FValue: TObject;
procedure SetKey(const Value: string);
procedure SetValue(const Value: TObject);
public
property Key: string read FKey write SetKey;
property Value: TObject read FValue write SetValue;
end;
implementation
{ TKeyValue }
procedure TKeyValue.SetKey(const Value: string);
begin
FKey := Value;
end;
procedure TKeyValue.SetValue(const Value: TObject);
begin
FValue := Value;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -