TDictionary<string,class of TControl>
– 正如您所看到的 – 保存字符串对和对TControl类定义的引用,以便能够在运行时调用字典元素上的Create方法.
我可以吗?
type TControlClass = class of TControl;
然后你可以声明字典:
var Dict: TDictionary<string,TControlClass>;