microsoft/XamlBehaviorsWpf

Event properties are missing from the nuget package

virzak opened this issue · 1 comments

Event properties are missing from the nuget package

public static readonly DependencyProperty EventArgsConverterProperty = DependencyProperty.Register("EventArgsConverter", typeof(IValueConverter), typeof(InvokeCommandAction), new PropertyMetadata(null));
public static readonly DependencyProperty EventArgsConverterParameterProperty = DependencyProperty.Register("EventArgsConverterParameter", typeof(object), typeof(InvokeCommandAction), new PropertyMetadata(null));
public static readonly DependencyProperty EventArgsParameterPathProperty = DependencyProperty.Register("EventArgsParameterPath", typeof(string), typeof(InvokeCommandAction), new PropertyMetadata(null));

That means that MVVM Light's implementation is the only option for us at this time:

That's because those new properties have not been released via NuGet yet. They will be available with the next RTM release.