Hello,
Maybe this is something obvious, but here is what I have. I need to write a string in XAML. That is ok, but if the string has the dot character inside it, the XAML parser fails. I tried all kinds of escaping, but nothing helps.
<datafilter:ItemPropertyDefinition Name="Players.Count"
PropertyType="{Binding Int32, ElementName=Types}"
DisplayName="Squad Size">
</datafilter:ItemPropertyDefinition>
No matter what I do, I cannot have a string literal that contains a dot. The XAML parser always tells:
"Players.Count' is not a valid value for Name".
Any ideas? Thanks in advance.
Rossen