Hi,
i'm working on a WPF application on Visual Studio 2019 version 16.8.3.
I need to use design time data.
I followed what is written in this article
https://docs.microsoft.com/en-us/visualstudio/xaml-tools/xaml-designtime-data?view=vs-2019
But when i try to add a TextBlock in this way
<TextBlock Text="{Binding Name}" d:Text="Name!" />
designer says that "Text property does not exist in namespace http://schemas.microsoft.com/expression/blend/2008"
Any suggestions?
Thanks!