https://ninjatrader.com/support/foru...10#post1124507
In the side panel I have been able to load an XAML using the technique outlined in the following post:
https://ninjatrader.com/support/foru...egy#post759830
I am using the technique outlined in the LoadXaml method to load the XAML using FileStream(. XAML file )
As I stated before, everything is working correctly.
In the XAML file I would like to display a normal (not the one used in NT8) TabControl. Here is the XAML for it:
<Grid><TabControl TabStripPlacement="Top"><TabItem Header="Tab1"><Label Content="Content goes here..." /></TabItem> <TabItem Header="Tab2" /> <TabItem Header="Tab3" /></TabControl></Grid>
In the screenshot I cannot even control the locations of the tab by setting the TabStripPlacement attribute to "Top".
Based on the behavior that I am getting, I would guess that the NT8 TabControl layout/template is taking control over the standard/normal TabControl. How can I possibly display the normal TabControl? Is there any attribute that I can add to the TabControl tag to deactivate the NT8 TabControl layout?
Once I get it to work, the TabItem will hold buttons and labels; It will never hold a NT8 chart.
Comment