I'm developing a NT Add-On and wish to implement the same feature used in the NT Control Window / Account Data Window that allows the user to select the type of new tab page to create - see attached screenshot
Obviously tab page creation is provided by an implementation of INTTabFactory.CreateTabPage() but all the examples I've encountered are for a single type of tab page, for example:
public NTTabPage CreateTabPage(string typeName, bool isNewWindow = false)
{
return new MyWindow1TabView();
}
Can anyone provide an example on how to do this please?

Comment