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
Support compiled bindings for ViewModels based on a generic + nested type.
Sample:
classes:
public class MyViewModel<T>
{
public class Nested
{
Nested() { }
}
}
in code-behind: BindingContext = new MyViewModel<MyModel>.Nested()
In Xaml, I want to bind x:DataType="{x:Type viewmodels:MyViewModel(models:MyModel)+Nested"
See also #16841#20625#20616
The text was updated successfully, but these errors were encountered:
Support compiled bindings for ViewModels based on a generic + nested type.
Sample:
classes:
in code-behind:
BindingContext = new MyViewModel<MyModel>.Nested()
In Xaml, I want to bind
x:DataType="{x:Type viewmodels:MyViewModel(models:MyModel)+Nested"
See also #16841 #20625 #20616
The text was updated successfully, but these errors were encountered: