AI OnAI Off
Here is an example on how to do it from an IInitializableModule
public void Initialize(InitializationEngine context) { var propertyControlFactory = context.Locate.Advanced.GetInstance<IPropertyControlFactory>(); propertyControlFactory.TryRegister<MyPropertyData, MyPropertyControl>(); }
Hey everybody here.
I am stuck with an old custom property that we will later remove so I would not like to update it to DOJO, just do as it worked in Epi 7, with this ugly button.
The problem is that with 11, I need to change to use IPropertyControlFactory and I can not find anywhere or any example on how to use that.