"IValueConverter" does not support converting from a string.——C# WPF 提示错误

当我们在WPF的Xaml代码中,绑定ValueConverter的时候 ,可能会遇到题中的报错信息。
假设Xaml代码如下:

<Grid.Resources>
        <local:MyConvertor x:Key="stringconverter" />
    </Grid.Resources>
<Slider x:Name="mySlider" Height="50" Width="276" Maximum="100"/>
<Label Content="{Binding ElementName=mySlider, Path=Value, Converter=stringconverter}" />

上面这段代码中导致报错的原因在与这段代码:

Converter=stringconverter

正确的语法应该是:

Converter={StaticResource stringconverter}

你可能感兴趣的:(WPF,Converter)