I am new to .net and i studied on msdn that it "represents a control that can be used to present a collection of items." By this line what i understand is suppose if i use it for TabControl then it provides a control which will enable several TabItems (collection) to render on the given conatiner.
<controls:TabControl Grid.Row="0" BorderThickness="0" Background="White"
ItemsSource="{Binding TabList, Mode=TwoWay, Converter={StaticResource TabConverter}}"
Could someone please correct (if i am wrong) with an example easy to understand showing why do we use it. What happen if we dont use it?