In previous versions of Delphi, my custom Form showed its published properties.
However, I'm running into an issue with Delphi 10.2 Tokyo. Specifically, I'm not seeing a good way to call the appropriate method found in this post.
To sum it up, a call to RegisterCustomModule()
is needed, however, in the DesignIntf
unit described here, there is no TCustomModule
(there is TBaseCustomModule
and TCustomModuleClass
, though), also the base custom module inherits from TInterfacedObject
, which TForm
does not (using FMX as my framework).
What is the correct method for registering a FMX Form to show published properties in the latest version of Delphi?