I'm trying access header tabs from a new window (NTWindow) created by indicator. I tried everything but i could find the correct way.
Inside the indicator I access tabs bythis way:
var chartWindow = Window.GetWindow(ChartControl.Parent) as Chart;
var tabs = chartWindow.MainTabControl.Items;
But inside addon it cant be accessed.
I tried also passing a parameter from indicator chart with actual chart but nothing works. Also with Owner methods.
Comment