Consider the following scenario:
-You have a tabbed interface and it has four tabs.
-You put a few components and you bind them like this:
<TextBox x:Name="LocationBackup" HorizontalAlignment="Left" Height="29" Margin="0,51,0,0"
TextWrapping="Wrap" VerticalAlignment="Top" Width="505"
Text="{Binding Source={x:Static properties1:Settings.Default},
Path=AutoBackupLocation}"
TextChanged="LocationBackup_TextChanged" IsEnabled="{Binding IsChecked, ElementName=AutoBackupCheckbox, FallbackValue=False, TargetNullValue=False}"
In this scenario, if the components aren't in the first tab, data binding fails.