As a very quick and easy solution, you can provide a fallback value as follows:
<TextBlock Text="{Binding Path=MyProperty, FallbackValue=Some text to show when binding fails}" />
Please note that this will also appear in your application if MyProperty cannot be found.
If you want to associate a ListBox (or something else) with more complex data, you can use Blend to create it, but this is probably too large for your TextBlocks. See this tutorial for a walkthrough.
source share