我发现自己经常创建转换器并且希望能够:
- 右键单击我的转换器文件夹
- 添加新项目...
- 选择转换器项目模板
我找到了这些说明,但我可以想象在某处已经有WPF 转换器等标准文件的模板,有人知道吗?
将创建以下文件:
[ValueConversion(typeof(string), typeof(string))]
class SaveStatusToSaveStatusMessageConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return value;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return value;
}
}