I followed the Try it Out-Data Binding, Collections, and Design Data. Although the app can run, but I noticed that the "d:DataContext="{d:DesignData /SampleData/OrderSampleData.xaml}" is located in the different tab .
my project:
Code:
<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot" Background="Transparent" d:DataContext="{d:DesignData /SampleData/OrderSampleData.xaml}">
The example from textbook on on the top of <phone:PhoneApplicationPage> :
Code:
shell:SystemTray.IsVisible="True" d:DataContext="{d:DesignData /SampleData/OrderSampleData.xaml}">
Does anyone know how can I make it as same as the example? Thanks in advance.