I just installed Template10 Extension on Visual Studio 2015 Community. When I create a new UWP project with the Hamburger or Minimal Template, I get the following error.
"The name 'PropertyChanged_ViewModel' does not exist in the current context"
Blank Template from the same extension works fine though.
Yes, I have updated all the extensions to the latest version.
I managed to fix the error. Check this pull request on GitHub.
Going by the docs, The BindingMode of TextBlock element defaults to OneWay and so there is no need to specify it explicitly. All you need to is, Open DetailsPage.xaml and find the following line
<TextBlock Style="{StaticResource SubtitleTextBlockStyle}" Text="{x:Bind ViewModel.Value, Mode=OneWay, FallbackValue=DesigntimeValue}" />
and replace it with this
<TextBlock Style="{StaticResource SubtitleTextBlockStyle}" Text="{x:Bind ViewModel.Value, FallbackValue=DesigntimeValue}" />