Binding ContentControl Content for dynamic content
I'm currently trying to achieve the functionality of a tabcontrol with hidden tabs by using a ListView (as tabs) and a ContentControl with Binding the Content Property. I read a bit on that topic and if I got it right, it should work this way: <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="20.0*"/> <ColumnDefinition Width="80.0*"/> </Grid.ColumnDefinitions> <ListBox Grid.Column="0"> <ListBoxItem Content="Appearance"/> </ListBox> <ContentControl Content="{Binding SettingsPage}" Grid.Column="1"/> </Grid> . . <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml