Advanced Forum Search Results
-
I probably should have mentioned that this xaml is not for any UI controls, it is strictly for serializing data.
-
I'm loading xaml via XamlReader.Load the class has a property named "Name", when loading the xaml it seems to ignore my Name attribute (I also tried x:Name). The Title property loads fine, but the Name property is always null.
public class Entity
{
public string Name { get; set; }
public string Title ...