gpt4 book ai didi

c# - .net WPF IValueConverter 构造函数

转载 作者:太空宇宙 更新时间:2023-11-03 20:10:11 24 4
gpt4 key购买 nike

简单问题:

为什么我必须为 IValueConverter 提供一个构造函数

我不是在问,为什么我必须有一个空构造函数,我是在问我为什么必须有一个?

如果我有:

public class PauseButtonValueConverter : MarkupExtension, IValueConverter
{
//public PauseButtonValueConverter() //<- Uncomment this and the error is fixed
//{
//}

public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}

public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}

public override object ProvideValue(IServiceProvider serviceProvider)
{
return this;
}
}

然后,我的 VS2012 给出了编译时错误:No constructor for type 'PauseButtonValueConverter' has 0 parameters.

如果我添加构造函数,错误就修复了。

最佳答案

这是因为您是从 MarkupExtension 派生的,constructor为此受到保护。在这种情况下,编译器不会自动生成默认构造函数。您必须自己添加。

在大多数情况下,创建值转换器时不需要从 MarkupExtension 派生。我假设您有这样做的理由,但如果没有,只需删除基类。

关于c# - .net WPF IValueConverter 构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20525886/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com