In my app, I load a screen with a collection of objects. Is there a simple way to create a number of tabs based on that collection of objects using the <igWindows:XamTabControl> and <igWindows:TabItemEx>? Everywhere I look, all of the TabItemEx's are hard coded.
Hello,
Doesn't this work?
XamTabControl x = new XamTabControl();
x.ItemsSource = new List<int>() { 1, 2, 3 };
It works great but one thing...I don't get the look at feel lke I do if i define the tabs as TabItemEx in xaml manually.