Hi
We have a RadTabbedWindow with tabs as itemsource. Is it possible to have a status bar at the bottom?
And whenI put in the statusbar-markup I get the error message "System.InvalidOperationException: 'Operation is not valid while ItemsSource is in use. Access and modify elements with ItemsControl.ItemsSource instead.'"
Just for laughs I have tried to add status bar to the user controls for the tabs as well, but it cant go there
<telerik:RadTabbedWindow
...
ItemsSource="{Binding WindowTabs}"
SelectedItem="{Binding SelectedWindowTab, Mode=TwoWay}">
<telerik:RadTabbedWindow.Resources>
...
</telerik:RadTabbedWindow.Resources>
<telerik:RadTabbedWindow.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding TabHeader}" Foreground="Black"/>
</DataTemplate>
</telerik:RadTabbedWindow.ItemTemplate>
<StatusBar Name="sbar" VerticalAlignment="Bottom" >
<StatusBarItem>
<TextBlock>Im a status bar!</TextBlock>
</StatusBarItem>
</StatusBar>
</telerik:RadTabbedWindow>