indexdef.pas
来自「Delphi利用MVC开发的典型例子」· PAS 代码 · 共 21 行
PAS
21 行
unit indexDef;
//this unit contains the public define for indexTreeView and IndexTreeMdl
interface
type
PIndexNode = ^TIndexNode;
TIndexNode = record
ID: string; //unique id of a node
Name: string; // the node name
ImageIndex: Integer;
end;
implementation
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?