.
, XAML:
public static readonly DependencyProperty ListViewObjectProperty = DependencyProperty.Register(
"ListViewObject",
typeof(ListView),
typeof(WidthConverter),
new UIPropertyMetadata(0));
... ListView. "propdp" VS " UIPropertyMetadata (0)", . " UIPropertyMetadata (null)".
Change this fixed for me. For some reason, I am not getting this apparent exception at runtime.
source
share