VS2012とBlendforWindows 8を使用しています。WindowsPhoneアプリとSilverlightアプリでコンバーターを使用する場合、新しい変換をクリックして、リストからコンバーターを選択します。VS2012とBlendforWindows 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();
}
}