What should be one of the most simpliest form of databinding, is now causing me great amounts of grief. In my XAML, I have something as such:
<TextBox Text="{Binding Path=Speed}" />
Then in my matching .cs file, I have a property as such:
public int Speed { get; set; }
But they aren't binding in harmony and I don't understand why. >:-( Any suggestions as to what I'm doing wrong would be greatly appreciated! Many thanks in advance! :-D