Closed taks closed 4 years ago
same as #46, but I change the text and commit message to English.
When used inside a Setter.Value (as follows), ArgumentException occurs in Visual Studio design mode.
<Style TargetType="ComboBox" > <Setter Property="IsEnabled" Value="{c:Binding 1>1}" /> </Style>
The error message is 'Binding' is not valid for Setter.Value. The only supported MarkupExtension types are DynamicResourceExtension and BindingBase or derived types.
'Binding' is not valid for Setter.Value. The only supported MarkupExtension types are DynamicResourceExtension and BindingBase or derived types.
By inheriting DynamicResourceExtension, the error will disappear.
When I made this change in my project, System.ArgumentNullException: 'Key cannot be null. was thrown.
System.ArgumentNullException: 'Key cannot be null.
Since there is no solution, I will cancel this PR.
same as #46, but I change the text and commit message to English.
When used inside a Setter.Value (as follows), ArgumentException occurs in Visual Studio design mode.
The error message is
'Binding' is not valid for Setter.Value. The only supported MarkupExtension types are DynamicResourceExtension and BindingBase or derived types.
By inheriting DynamicResourceExtension, the error will disappear.