我正在使用 VS 2012 和 Blend for windows 8。当我在我的 Windows Phone 和 Silverlight 应用程序中使用转换器时,我会单击新转换并从列表中选择我的转换器。现在我已经升级到 VS 2012 和 Blend for windows 8,我的自定义转换都没有出现。谁知道如何找到转换器?
class Class1 : IValueConverter
{
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();
}
}