Bind to Properties Not Variables

Well…  I learned the hard way that when you bind XAML UI elements to an array of classes, you have to bind to Properties, not Variables.

For example, bind to:

Public string TagText
{
get { return tagText;}
}

Not…

public string tagText

Lesson learned!

Leave a Reply