Hi,
I am finding that I can't set a read only property as the source of a property binding.
ie. if the component I try use as a source has the following read only property:
public string LevelDescription {
get {
return "Lv." + _Level;
}
}
LevelDescription wont appear in the dropdown in the source property binding component in the editor.
if I change it to:
public string LevelDescription {
get {
return "Lv." + _Level;
}
set {}
}
then that property is now available in the dropdown of available properties and fields.
Bug or as per design? (I can imagine that it might be a requirement for bi-directional data binding but that's something I may not be using)
thanks