I am trying to implement my own add window.
The documentation has guided me to the following code:
public class AddOnFrameworkWindow : NTWindow, IWorkspacePersistence
{
public AddOnFrameworkWindow()
{
TabControl tc = new TabControl();
TabControlManager.SetIsMovable(tc, true);
TabControlManager.SetCanAddTabs(tc, true);
TabControlManager.SetCanRemoveTabs(tc, true);
TabControlManager.SetFactory(tc, new AddOnFrameworkWindowFactory());
Content = tc;
}
}
Could someone please points out where I am mistaking?
I would appreciate any help.
Best regards,

Comment