You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Private/protected members declared in inherited classes are not always properly retrieved.
Suppose we have following structure of ViewModels
public class BaseViewModel { }
public class MiddleViewModel : BaseViewModel
{
[Observable("MyTestInt")]
private IProperty<Int32> _myTestInt;
public MiddleClass()
{
_myTestInt = new Property<Int32>(123);
}
}
public class TopLevelViewModel : MiddleViewModel
{
}
If one were to try bind TopLevelViewModel's MyTestInt from it's parent class, then exception InvalidOperationException: Property 'MyTestInt' not found. would be raised.
The text was updated successfully, but these errors were encountered:
Private/protected members declared in inherited classes are not always properly retrieved.
Suppose we have following structure of ViewModels
If one were to try bind TopLevelViewModel's MyTestInt from it's parent class, then exception InvalidOperationException: Property 'MyTestInt' not found. would be raised.
The text was updated successfully, but these errors were encountered: