I am using ContentControl with DataTemplate to load data but data not getting loaded.
<DataTemplate DataType="{x:Type data:VesselInspectionSummaryViewModel}">
<StackPanel>
<ContentControl Content="{Binding InternalInspections}" ContentTemplate="{StaticResource InternalInspectionSummaryDataTemplate}" ></ContentControl>
</StackPanel>....
My concern with ContentControl which is inside DataTemplate, definition of InternalInspectionSummaryDataTemplate is as mentioned below.
<DataTemplate x:Key="InternalInspectionSummaryDataTemplate" >
<TextBlock Text="{Binding Value}" Style="{StaticResource HomeDetailsTitleFontStyle}" />
</DataTemplate>
But somehow I am not able to to display text for TextBlock which is a "Value". Can anyone please help me out to get value for field textBlock.
Finall I got the issue, it was not related with the xaml but in Viewmodel. Previous code was.
If you see properties does not corresponds to private variables so changed it to below.