I created a textblock in .xaml and declared a property in the .cs file named WrodName. How do I bind that property with textblock. I need the code which we write in the xaml code of tag i.e. DataContext code. Till now I came up with this
<TextBlock Text="{Binding WordName}"/>
And in .cs file:
public String WordName { get; set; }